ASP.Net Worker 进程内存分析工具

发布于 2024-07-23 09:28:14 字数 389 浏览 10 评论 0原文

我们有一个相当大容量的 ASP.Net 站点,使用 MS 商务服务器用 c# 编写,在 32 位环境中运行。 我经常看到工作进程高达 980 MB。 我想分析一下这个过程,并确定在代码中可以在哪些地方获得收益,以减少该网站的内存占用。 我的问题是,哪些工具适合您在 ASP.Net Web 应用程序上执行此类操作?

我正在寻找能够给我非常具体的反馈的工具,这将真正有助于清楚地看到代码中需要更改的内容。 如果这个工具能够分析我们的生产环境工作进程以获得更具体的数据集进行比较,那就最好了。

[编辑]

到目前为止,似乎一致认为这是 Ant 和 JetBrains 之间的一个折腾。 有人用过两者吗? 如果是的话,哪一个更胜一筹,或者各自的优缺点是什么?

We have a fairly high volume ASP.Net site written in c# using MS commerce server, running in a 32-bit environment. I see the worker process up to 980 megabytes quite often. I would like to profile this process and determine where any gains could be made in code to reduce the memory foot print of this site. My question what tools have worked well for you doing this sort of thing on ASP.Net web applications?

I am looking for tools that will give me very specific feedback, that will really help to clearly see what needs to change in the code. It would be best if this tool could profile our production environment worker process for a more concrete set of data to compare.

[edit]

So far it seems the consensus is that it's a toss up between Ants and JetBrains. Has anyone used both? If so which one was superior, or what are the pros and cons of each?

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

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

发布评论

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

评论(7

喜你已久 2024-07-30 09:28:14

有一个免费的方法。

  • 启动任务管理器,
  • 右键单击 w3wp 进程,
  • 选择“创建转储”(我很惊讶很少有人知道这个功能 - 包括我自己!)
  • 将转储文件复制到本地计算机(所以我们不打扰生产服务器)
  • 在 Visual Studio 中打开文件
  • 选择“调试托管内存”以进行高级视图,哪个类使用内存等。

据我所知,上面需要 Visual Studio“终极”版本(我猜它现在称为“企业”?)。 如果您没有,请按照以下步骤操作(也非常简单)

  • 启动 WinDbg(免费工具,Windows SDK 的一部分,StackOverflow 上有大量关于如何在没有 SDK 膨胀软件的情况下下载 WinDbg 的答案)
  • 按 Ctrl + D 并将转储文件加载到 WinDbg 中,
  • 类型 .loadby sos clr (这将加载允许 WinDbg 分析 .NET 进程的 SOS.dll,SOS.dll 是 NET Framework 的一部分,因此您可能已经拥有它)
  • 输入 !dumpheap -stat (这将输出类名,按内存使用情况升序排序。跳过 system.stringsystem.byte[] 类导致这些是副作用,而不是原因...)

2019 年更新:WinDbg 现在可以通过 MS Store 获得,只需搜索“WinDbg”,然后单击几下即可找到。

There's a free way.

  • launch the task manager
  • right-click the w3wp process
  • select "create dump" (I'm amazed how few people know about this feature - including myself at some point!)
  • copy the dump file to your local machine (so we don't bother the production server)
  • open the file in Visual Studio
  • enjoy
  • select "Debug Managed memory" for advanced view which class uses memory etc.

AFAIK, the above requires Visual Studio "Ultimate" edition (I guess its called "Enterprise" now?). If you don't have one, then follow these steps (very simple too)

  • launch WinDbg (free tool, part of Windows SDK, there are tons of answers here on StackOverflow on how to download WinDbg without all the SDK bloatware)
  • Press Ctrl + D and load the dump file into WinDbg
  • type .loadby sos clr (this will load SOS.dll that allows WinDbg to analyze .NET processes, SOS.dll is a part of NET Framework so you probably already have it)
  • type !dumpheap -stat (this will output the class names, sorted by memory usage, ascending order. Skip system.string and system.byte[] classes cause these are side-effects, not the cause...)

UPDATE FROM 2019: WinDbg is now available via MS Store, just search for "WinDbg", then couple of clicks and its there.

简单 2024-07-30 09:28:14

ANTS Profiler 非常擅长分析 ASP.NET 应用程序。

ANTS Profiler is very good at profiling ASP.NET applications.

江心雾 2024-07-30 09:28:14

ANTS 内存分析器 之类的东西可能对您有用。

Something like ANTS memory profiler might be useful to you.

甜点 2024-07-30 09:28:14

另请考虑自动化 QA 中的 AQTime

Also consider AQTime from Automated QA.

遗失的美好 2024-07-30 09:28:14

JetBrains 的 dotTrace 多次救了我。
它不是免费的(可以试用),但它确实很强大!

dotTrace from JetBrains saved me several times.
It is not free (trial is available), but it is really powerfull!

抹茶夏天i‖ 2024-07-30 09:28:14

我们使用 AviCode,它对我们来说效果很好。

We use AviCode, and it works pretty good for us.

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