vote up 0 vote down star
2

I'm trying to figure out the size of a particular session state. On one of our heavy pages (lots of data in a table) it gets progressively slower. The issue is resolved by logging out of the system.

I've profiled the page looking for JavaScript memory leaks, but I didn't find anything. My next plan of attack is too look at ViewState and Session State. ViewState will be simple, but Session State poses a challenge.

Does anyone know of any tricks or tools that would help figure out the size of Session State?

EDIT

The session state is InProc.

flag

79% accept rate

1 Answer

vote up 1 vote down

Measure it:

int totalBytes;
var formatter = new BinaryFormatter();
for(int i = 0; i < Session.Count; i++)
{
    using (var stream = new MemoryStream())
    {
        formatter.Serialize(stream, Session[i]);
        stream.Flush();
        totalBytes += stream.Length;
    }
}

Also I believe that if you enable tracing it will show you some details about the session (not sure about this, never tried it myself).

link|flag
+1 as it looks like it should work but I'd certainly keep looking for a better way... – Mark Brittingham Nov 3 at 17:55
That would work if everything in Session State was serializble. – Charles Conway Nov 3 at 17:59
Oops, I thought you were using out of proc sessions. With InProc it won't work if objects aren't serializable. – Darin Dimitrov Nov 3 at 18:05
That's what I am bumping into... :( – Charles Conway Nov 3 at 18:06
Did you try enabling tracing? – Darin Dimitrov Nov 3 at 18:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.