Memory allocation
Which consumes more memory:Application state or Session state?
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.
Pravin MorePosted Oct 21, 2011, 2:11 AM
See,
Application state is one of the server side state managment mechanism which stores application memory on the server rather that persisting data in client side memory
Session state tends to use more memory that application state,because copies of all variable are stored per each user
so session state use more memory than Application state.
Thank You,
Pravin
Prabhu RajaPosted Oct 21, 2011, 1:49 AM
Session State will use much more memory then Application State, because it has store values for each and every users.