我有一个管理XmlDocument对象的应用程序,因为用户创建新项目/对现有项目进行更改.我已经知道我需要同步调用XmlDocument.CreateElement(…).我的问题是,我可以继续构建返回的元素而不进行同步,然后在将该元素附加到XmlDocument时再次同步吗?
这是我认为我可以做的,我只需要确保它是线程安全的,就像我认为的那样:
' "doc" object already exists as an XmlDocument SyncLock doc Dim newsub As XmlElement = doc.CreateElement("submission") End SyncLock ' use "newsub" here without synchronization SyncLock doc doc.Item("submissions").AppendChild(newsub) End SyncLock
当添加“newsub”的子元素时,我也会在创建每个元素时同步.
作为这个问题的后续,我会更好地同步整个“newsub”对象的构建吗?我认为上面这样做的原因更好的是性能,但我不是一个专家,我是否实际上对性能产生了有意义的影响,或者只是让事情复杂化.
通常,当使用从 XmlNode派生的任何类时,您将需要同步,因为它的文档明确指出:Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
这意味着,如图所示,在追加孩子时你需要同步.
As a followup to this question, would I be better off just synchronizing the entire building of the “newsub” object? The reason I think doing it like above is better is for performance, but I am not by any means an expert in whether I am actually making a meaningful impact on performance, or just complicating things.
这取决于 – 如果你要做任何可能导致它可以从多个线程使用的东西,那么你可能需要同步它.
在上面的代码中,在同步之外使用newsub应该是安全的,因为它不是实际文档树的一部分,除非你将它作为子项追加.这将减少doc被锁定的时间,如果从多个线程使用doc,可能会减少争用.