如果我不在完全调试模式下使用 FastMM4,它是否比 Delphi XE2 中的内存管理器更快?
我使用 FastMM4,通常在开发过程中处于完全调试模式。如果我关闭此模式,我是否应该安排我的应用程序返回到 Delphi (XE2) MM,或者始终保持 FastMM4 链接是否有性能优势?
I use FastMM4, normally in full debug mode during development. If I turn off this mode should I arrange my app to go back to the Delphi (XE2) MM or is there a performance benefit in leaving FastMM4 linked all the time?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Delphi 的内存管理器(自
D2007、IIRCD2006)是FastMM4
,因此速度不会有任何提高。完整的FastMM4
可能会更快,因为您可以通过直接从源代码使用它来获得改进和错误修复。Delphi's memory manager (since
D2007, IIRCD2006) isFastMM4
, so you won't get any improvement in speed. The fullFastMM4
might be faster, because you get improvements and bug fixes by using it straight from the source.