c# – 执行.pdbs减缓发布应用程序?

前端之家收集整理的这篇文章主要介绍了c# – 执行.pdbs减缓发布应用程序?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如果.pdb(程序调试)文件包含在.dll中,则行号将出现在抛出的任何异常的堆栈跟踪中.这是否影响应用程序的性能

这个问题不是关于版本与调试,即优化.关于具有.pdb文件性能影响.每次抛出异常时,是否读取.pdb文件?加载程序集时,信息是否以某种方式缓存?还是第一次缓存相关的异常?它有多大的区别?

解决方法

John Robbins在他的文章 Do PDB Files Affect Performance?中写道.简单的答案是否定的(如果您使用/ optimize和/ debug开关来编译发行版)

That might be true on other operating systems,but not Windows. If you think they do,then why does Microsoft build every single product they ship with PDB files turned on for both debug and release builds? They wrote the compiler,they wrote the linker,and they wrote the operating system so they know exactly what the effects are. Microsoft has more people focused on performance than any other software company in the world. If there were any performance impact at all,they wouldn’t do it. Period. Performance isn’t the only thing at Microsoft,it’s everything.

另外:

When built /optimize+ and a /debug switch,a DebuggingMode.IgnoreSequencePoints is passed to the DebuggableAttribute to tell the JIT compiler that it doesn’t need to load the PDB file in order to correctly JIT the IL.

他还有另一篇题为PDB Files: What Every Developer Must Know文章也是一个很好的阅读.

原文链接:https://www.f2er.com/csharp/92548.html

猜你在找的C#相关文章