IIS 工作进程:已使用的缓存%进程内存超过 100%,这怎么可能?

发布于 2024-07-24 13:04:13 字数 337 浏览 6 评论 0原文

PerfMon 计数器:已使用的缓存进程内存百分比超过 100%。 这怎么可能??

注意:只有一个工作进程正在运行,托管一个网站。

这如何可能

PerfMon counter : Cache % Process Memory Used is more than 100 % . How is this possible??

Note : only one worker process was running, hosting one website.

Howz this Possible

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(5

梦纸 2024-07-31 13:04:16

[已使用的缓存进程内存百分比]
= [工作进程消耗的内存] * 100 / [缓存施加的内存限制]

“工作进程消耗的内存”没有理由不能超过“缓存施加的内存限制”。 当“工作进程消耗的内存”> “对缓存施加的内存限制”,该计数器的值将大于 100。

参考:在 Msdn 博客

[Cache % Process Memory Used]
= [Memory consumed by worker process] * 100 / [Memory Limit imposed on Cache]

There is no reason why "Memory consumed by worker process" can't exceed "Memory Limit imposed on Cache". When "Memory consumed by worker process" > "Memory Limit imposed on Cache", value of this counter will be greater than 100.

Reference : Search for "Cache Memory Percentages" Section in Msdn blog

何时共饮酒 2024-07-31 13:04:15

可能只是一个舍入错误。

Probably just a rounding error.

套路撩心 2024-07-31 13:04:15

它可能是舍入错误,或脏数据收集,或者进程可能位于虚拟内存中。 盒子在晃动吗?

It may be a rounding error, or dirty data gathering, or the process may be in virtual memory. Is the box thrashing?

夏日落 2024-07-31 13:04:15

Mashin.config 中有一个设置,指示缓存的总使用量,默认情况下为总内存的 60%,如果它以某种方式发生更改,您可能会达到该级别。 另请检查您的 web.config 文件中的缓存设置

There is a setting in Mashin.config that indicates the total usage of cache it is by default in 60% of the total memory if its changed somehow you might reach that level. please also check your web.config file for the setting of cache

神经大条 2024-07-31 13:04:14

IIS 工作进程有上限和下限。 在回收应用程序池之前,它可能会短暂地超越其中一个限制,以使内存消耗回到更合理的水平。

There are upper and lower limits imposed on IIS worker processes. It could have surpassed on one of these limits briefly before recycling the Application pool to get memory consumption back down to a more reasonable level.

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