ASP.net: How to list a WebApplication All users Session -
i want know website memory usage,first want know session detail of users,this me decide whether change sessionstate mode "sqlserver" or "stateserver".
how can do?
thanks
for website memory usage, @ perfmon. if wanted count how memory using in each user session, count when adding not when abandoning session. tricky if you've got session["foo"]=bar on place, needs wrapped somehow.
if change out of process session state, need test touches session. session variables crossing process boundaries, need serializable , there things don't work.
Comments
Post a Comment