문제

Lets say I open some application or process. Did some work with that. Now I closed it.

Need to know whether this application caused any memory leak. i.e used up some heap memory and not cleared it properly.

Can I get this statistics some how? I'm using Visual Studio (for development) under Windows OS.

Even I would be interested in knowing this information for any 3rd party application.

도움이 되었습니까?

해결책

When an application closes all resources are automatically released by Windows.

A quick & dirty tool to get an indication for memory/resource-leaks inside an application is Perfmon.

The actions executed by an application, can cause other processes to use more memory. SQL Server can make its cache size bigger, maybe you have opened Word or Explorer, the Windows Search engine might kick in because you saved some file. The virus scanner can be more active, etc.....

다른 팁

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top