Inproc and outProc session management
How can we implement the Inproc and outProc session management in Asp.Net?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
ketan italiyaPosted Nov 27, 2013, 2:32 AM
http://bnarayansharma.wordpress.com/2012/08/11/inproc-outproc/
http://www.codeproject.com/Questions/394365/what-is-inproc-and-outproc
Satyapriya NayakPosted Feb 9, 2012, 12:58 AM
An inproc is one, which runs in the same process area as that of the client giving the advantage of speed but the disadvantage of stability because if it crashes it takes the client application also with it. Outproc is one, which works outside the client's memory thus giving stability to the client, but we have to compromise a bit on speed.
Please refer the below links
http://www.codeproject.com/KB/session/ASPNETSession.aspx
http://www.codeproject.com/KB/web-cache/cacheinwebfarmandwebgarde.aspx
Thanks