and/or virtual) is used by objects stored in
1. Cache object
2. Application State
3. Session States (across all current sessions of an application)
4. Output Cache (Page/Control caching)
ThanksI believe the following article detailing Performance Counters available for
ASP.Net will be helpful to you:
http://msdn.microsoft.com/library/d...rsforaspnet.asp
HTH,
Kevin Spencer
.Net Developer
Microsoft MVP
I get paid good money to
solve puzzles for a living
"Guadala Harry" <GMan@.NoSpam.com> wrote in message
news:uJ4xMMsuEHA.3776@.tk2msftngp13.phx.gbl...
> Just wondering if/how it is possible to measure how much memory (physical
> and/or virtual) is used by objects stored in
> 1. Cache object
> 2. Application State
> 3. Session States (across all current sessions of an application)
> 4. Output Cache (Page/Control caching)
> Thanks
>
you will notice little in the way of memory usage.
.net has no direct support for getting the memory footprint of any object.
you can estimate by serialing an object to a binary stream and getting the
size of the stream.
if you want to know about memory usage, then you want to download the win32
debugger, add the SOS.dll for .net GC support, and start p
ing at the GC.start here:
http://msdn.microsoft.com/library/d...h0
1.asp
-- bruce (sqlwork.com)
"Kevin Spencer" <kspencer@.takempis.com> wrote in message
news:OuavrzsuEHA.228@.TK2MSFTNGP10.phx.gbl...
> I believe the following article detailing Performance Counters available
for
> ASP.Net will be helpful to you:
>
http://msdn.microsoft.com/library/d...rsforaspnet.asp
> --
> HTH,
> Kevin Spencer
> .Net Developer
> Microsoft MVP
> I get paid good money to
> solve puzzles for a living
> "Guadala Harry" <GMan@.NoSpam.com> wrote in message
> news:uJ4xMMsuEHA.3776@.tk2msftngp13.phx.gbl...
(physical
>
0 comments:
Post a Comment