![]() | |
![]() |
| | Thread Tools | Search this Thread | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
The \bin directory of my web application contains 13MB of DLL files. Can I make this simplistic calculation: 13 MB X 10 Applications = 130 MB. Therefore 130MB of the private bytes would be allocated to hold the assemblies themselves? |
|
How can I find out what exactly is in the private bytes? Is there a tool I can use to find out? I have a memory dump and I have WinDbg. I know how to inspect managed memory using SOS Extension commands but I don't know how to to inspect non managed memory. Is WinDbg the right tool? Thanks -Sly |
#3
| |||
| |||
|
|
Hi, We have a .Net 2.0 Web Services Application running on Windows 2003 Server SP. There is one application pool that contains 10 copies of this application (there is one copy per customer that we have). When all the applications are loaded, the "private bytes" for the process is around 400MB and the "# Bytes in all heaps" is around 250MB. I'm trying to understand what is loaded in the private bytes. As far as I understand, the private bytes include the assemblies themselves as well as any unmanaged objects (i.e.: COM Objects). Is that right? The \bin directory of my web application contains 13MB of DLL files. Can I make this simplistic calculation: 13 MB X 10 Applications = 130 MB. Therefore 130MB of the private bytes would be allocated to hold the assemblies themselves? How can I find out what exactly is in the private bytes? Is there a tool I can use to find out? I have a memory dump and I have WinDbg. I know how to inspect managed memory using SOS Extension commands but I don't know how to to inspect non managed memory. Is WinDbg the right tool? Thanks -Sly |
#4
| |||
| |||
|
|
The \bin directory of my web application contains 13MB of DLL files. Can I make this simplistic calculation: 13 MB X 10 Applications = 130 MB. Therefore 130MB of the private bytes would be allocated to hold the assemblies themselves? Much of each DLL (any readonly segments) should be shared, and not appear in private bytes at all. |
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
| |