Pravin
Pravin

Reputation: 543

Size of Session Memory used by Entire website

I want to know the size of memory used by session state variables including all the sessions present in AppDomain. I got the size of session variable that present in that session. But i want for entire AppDomain.

Thanks, Pravin

Upvotes: 1

Views: 2139

Answers (2)

giri-webdev
giri-webdev

Reputation: 535

with the help of Application Domain Resource Monitoring you can find the memory usage by application domain. follow this link

http://msdn.microsoft.com/en-us/library/dd997285.aspx

Upvotes: 1

Krishna
Krishna

Reputation: 636

One thing you could try is to loop through the session objects and get the total as mentioned in this SO link.

Upvotes: 0

Related Questions