.NET 2.0 应用程序(“任何 CPU”)在 64 位操作系统/处理器上运行缓慢
我的 Windows 应用程序是在 .NET 2.0 框架上开发的,并使用“任何 CPU”构建,开发环境为32位操作系统+Visual Studio 2005。
现在我在 64 位处理器 + 64 位操作系统上部署此应用程序,但运行速度很慢。
但如果我使用 x86(32 位)进行构建,它在 64 位处理器 + 64 位操作系统上工作正常,没有任何问题。
我有第三方组件,例如 DevExpress、Janus、txtext、ComponentOne Zip< /a>等
为什么运行慢?
My Windows application is deveoped on .NET 2.0 Framework and is build using 'Any CPU', development enviroment is 32-bit OS + Visual Studio 2005.
Now I am deploying this application on 64-bit processoer + 64-bit OS it is running slow.
But if I build using x86 (32 bit), it is working fine without any issue on a 64-bit processor + 64-bit OS.
I have third-party components like DevExpress, Janus, txtext, ComponentOne Zip, etc.
Why is it running slow?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
64 位并不总是运行得更快。
简而言之,64 位应用程序消耗更多内存(如果您有一个 64 位指针数组,它将比具有 32 位指针的相同大小的数组更大)
更多内存意味着垃圾收集会更加努力。
阅读 此处和此处了解更多详细信息。
无论如何,您都必须分析应用程序并查看瓶颈在哪里。
(也许查看 GC 是一个不错的起点)
64 bit will not always run faster.
The short answer is that 64 bit application consumes more memory (if you have an array of 64 bit pointers it will be larger than array of the same size with 32 bit pointers)
More memory means that the garbage collection will work harder.
Read here and here for more details.
In any case you'll have to profile the application and see where's the bottle neck.
(maybe looking at the GC is a good place to start)