appdomain 中的 ShadowCopyFiles 属性有什么作用?
我知道当你设置为 true 时,它会对文件进行卷影复制。但是卷影复制是什么意思以及为什么我们需要卷影复制文件?
I know when you set to true ,it will shadow copy the files.But what does shadow copy mean and why we need to shadow copy files?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
卷影复制创建您正在引用的程序集的副本。
原因是 .Net(更准确地说是 Windows)一旦加载就无法卸载进程内的(某些)程序集。因此,您永远无法在不关闭整个进程的情况下替换程序集,因为文件仍被操作系统锁定。
但是,如果您有卷影副本,.Net 实际上使用它来加载您的类,您可以替换原始 .dll 文件,并且只有卷影副本(没有人“关心”)保持锁定状态。
这在某些环境中尤其重要(例如,您显然不想只是为了运行某些 Web 应用程序的新版本而关闭整个服务器的 Web 服务器)。
Shadow copy creates a copy of the assembly you are referencing.
The reason for this is that .Net (more exactly Windows) cannot unload (some) assemblies within a process once loaded. Because of this you could never replace an assembly without shutting down the entire process because the file remains locked by the OS.
However if you have a shadow copy .Net actually uses that to load your classes you can replace the original .dll file and only the shadow copy (that nobody 'cares' about) stays locked.
This is especially important in some environments (e.g. a webserver where you obviously don't want to shut down the entire server just to run a new version of some web-application).