472,119 Members | 1,791 Online
Bytes | Software Development & Data Engineering Community
Post +

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,119 software developers and data experts.

Cache, Session, ViewState and Application

My question is to do with scalability and the location for storate of cache,
session, viewstate and application data.

Application - Data is stored in memory (in process)
Session - Data is stored in memory (in process or out of process)
- can be configured to store the session data in sql server (which relates
to my question)
ViewState - Page (but can be modified to overwrite the storage mechanism to
store viewstate else where, esp Sesssion)
Cache - Data is stored in memory (in process)
Considering the above (if i'm not wrong), storing data in session state in
web farms with the session data stored in sql server is the best and right
option.
So that if the first request is processed by computer A, and some data is
set in the session, then if the next request by the same user is processed
by computer b the session info will be available (as its stored in sql
server).

What about if information is stored in the cache???
I.e. if in the first request the page stores some info in the cache
(computer A), and the next request is processed by computer B, then WOULD
the cache information be available????

Where is the cache data stored??
In process or out of process??
Can this storage location be configured?
Jul 5 '06 #1
2 1865
You could also consider storing (small amounts of) data in cookies. The
cookies are stored in the browser, and are sent along in every request.

The cache is stored in-process. AFAIK it cant be stored anywhere else.

If you for instance stored a database result in the cache, and the cache
would be stored in the database, that would be rather useless, right?

LeAnne wrote:
My question is to do with scalability and the location for storate of cache,
session, viewstate and application data.

Application - Data is stored in memory (in process)
Session - Data is stored in memory (in process or out of process)
- can be configured to store the session data in sql server (which relates
to my question)
ViewState - Page (but can be modified to overwrite the storage mechanism to
store viewstate else where, esp Sesssion)
Cache - Data is stored in memory (in process)
Considering the above (if i'm not wrong), storing data in session state in
web farms with the session data stored in sql server is the best and right
option.
So that if the first request is processed by computer A, and some data is
set in the session, then if the next request by the same user is processed
by computer b the session info will be available (as its stored in sql
server).

What about if information is stored in the cache???
I.e. if in the first request the page stores some info in the cache
(computer A), and the next request is processed by computer B, then WOULD
the cache information be available????

Where is the cache data stored??
In process or out of process??
Can this storage location be configured?
Jul 5 '06 #2
>Considering the above (if i'm not wrong), storing data in session state in
>web farms with the session data stored in sql server is the best and right
option.
I am no fan of these blanket statements. Stateserver does outperform sql
server for session storage all things considered so sql server is not always
the best and right option

--
________________________
Warm regards,
Alvin Bruney [MVP ASP.NET]

[Shameless Author plug]
Professional VSTO.NET - Wrox/Wiley
The O.W.C. Black Book with .NET
www.lulu.com/owc, Amazon
Blog: http://www.msmvps.com/blogs/alvin
-------------------------------------------------------
"Göran Andersson" <gu***@guffa.comwrote in message
news:%2****************@TK2MSFTNGP02.phx.gbl...
You could also consider storing (small amounts of) data in cookies. The
cookies are stored in the browser, and are sent along in every request.

The cache is stored in-process. AFAIK it cant be stored anywhere else.

If you for instance stored a database result in the cache, and the cache
would be stored in the database, that would be rather useless, right?

LeAnne wrote:
>My question is to do with scalability and the location for storate of
cache, session, viewstate and application data.

Application - Data is stored in memory (in process)
Session - Data is stored in memory (in process or out of process)
- can be configured to store the session data in sql server (which
relates to my question)
ViewState - Page (but can be modified to overwrite the storage mechanism
to store viewstate else where, esp Sesssion)
Cache - Data is stored in memory (in process)
Considering the above (if i'm not wrong), storing data in session state
in web farms with the session data stored in sql server is the best and
right option.
So that if the first request is processed by computer A, and some data is
set in the session, then if the next request by the same user is
processed by computer b the session info will be available (as its stored
in sql server).

What about if information is stored in the cache???
I.e. if in the first request the page stores some info in the cache
(computer A), and the next request is processed by computer B, then WOULD
the cache information be available????

Where is the cache data stored??
In process or out of process??
Can this storage location be configured?

Jul 6 '06 #3

This discussion thread is closed

Replies have been disabled for this discussion.

Similar topics

3 posts views Thread by Arthur Dzhelali | last post: by
7 posts views Thread by Mike | last post: by
3 posts views Thread by Alex Nitulescu | last post: by
3 posts views Thread by MattC | last post: by
2 posts views Thread by Kikoz | last post: by
4 posts views Thread by INeedADip | last post: by
3 posts views Thread by Dragon | last post: by
5 posts views Thread by Prashanth | last post: by
reply views Thread by leo001 | last post: by

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.