为什么 perfmon 无法提供可用内存以及替代方案是什么?

发布于 2024-07-11 08:46:53 字数 433 浏览 10 评论 0原文

我正在尝试获取有关我的 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 技术交流群。

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

发布评论

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

评论(1

一花一树开 2024-07-18 08:46:53

请参阅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).

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