.NET 2.0 应用程序(“任何 CPU”)在 64 位操作系统/处理器上运行缓慢

发布于 2024-08-06 18:31:12 字数 603 浏览 5 评论 0原文

我的 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 技术交流群。

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

发布评论

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

评论(1

甜扑 2024-08-13 18:31:12

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)

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