appdomain 中的 ShadowCopyFiles 属性有什么作用?

发布于 2024-08-29 14:16:09 字数 64 浏览 6 评论 0原文

我知道当你设置为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

∞琼窗梦回ˉ 2024-09-05 14:16:09

卷影复制创建您正在引用的程序集的副本。

原因是 .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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文