为什么 perfmon 无法提供可用内存以及替代方案是什么?
我正在尝试获取有关我的 C# 应用程序 (Windows XP) 何时会耗尽内存的可靠信息。 我在我的机器上做了一些研究和测试,并选择了最可靠的 perfmon 计数器:
Memory.Pages Output/sec
Memory.Available Bytes
我使用阈值和 AND 运算符,它工作得很好,但在客户端计算机(也是 Windows XP)上,两个计数器都没用。 可用内存不会低于 1GB,并且页面输出始终为零。 阅读了一些日志后,我仍然没有看到任何有用的计数器。
像提交内存这样的计数器给出了正确的值,但是程序在超过 5GB 可用空间的 50%-60% 后就会耗尽内存(分页会破坏性能)。
还有其他选择吗? 我不希望在计算过程中被迫尝试分配内存并捕获 OutOfMemory 异常。
I am trying to get reliable information on when my C# application (Windows XP) will run out of memory. I did some research and tests on my machine and picked the most reliable perfmon counters:
Memory.Pages Output/sec
Memory.Available Bytes
I use thresholds and AND operator and it works quite well, but on the client machine (also Windows XP) both counters are useless. Available memory does not drop below 1GB and pages output is constant zero. After reading some logs I still don't see any useful counter.
Counters like committed memory give correct value, but the program runs out of memory (with paging killing the performance) after crossing 50%-60% of the 5GB available.
Any alternatives? I wouldn't like to be forced to try to allocate memory and catch OutOfMemory exceptions during the computations.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅Windows 进程何时会耗尽内存?
长话短说,您想要检查进程的专用字节、虚拟字节和/或工作集。
See When does a Windows process run out of memory?
Long story short, you want to be checking the Private Bytes, Virtual Bytes and/or Working Set for your process(es).