ASP.NET Session StateServer - is it possible to extract info about current sessions?
Posted
by
Moe Sisko
on Stack Overflow
See other posts from Stack Overflow
or by Moe Sisko
Published on 2012-06-28T05:45:58Z
Indexed on
2012/06/28
9:16 UTC
Read the original article
Hit count: 178
I'm looking into changing the ASP.NET session state mode of our application from SQLServer to StateServer (for performance reasons).
In SQLServer mode, it is easy to extract information about the current sessions by querying SQL Server tables like ASPStateTempSessions. e.g. things like when each session was created, when it is due to expire, etc. You could even query the session state blob data to extract further application specific info (e.g. like the UserID, if it was saved in session state). This info was useful for administrators.
Just wondering if anyone has managed to do something similar for StateServer mode.
© Stack Overflow or respective owner