HighTechTalks DotNet Forums  

Caching

ASP.net Caching microsoft.public.dotnet.framework.aspnet.caching


Discuss Caching in the ASP.net Caching forum.



Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old   
Romero Queiroga Barbosa
 
Posts: n/a

Default Caching - 06-15-2005 , 04:01 PM






Hi all,

I'm new here and I don't speak english very good.

What's difference between caching and State?

Reply With Quote
  #2  
Old   
Brock Allen
 
Posts: n/a

Default Re: Caching - 06-15-2005 , 04:51 PM






Caching is a way to maintain state. There are various caching approaches.
One easy one to think about is data caching. The idea is to load data (state)
from the database once, and save it in memory (in the cache). The next time
you need that data, instead of taking the time to go to the database you
can just load it form the cache. It's intended to imporve performance. The
one problem is that the data you've stored in the cache is a copy of the
original data, so it could be out of date.

-Brock
DevelopMentor
http://staff.develop.com/ballen



Quote:
Hi all,

I'm new here and I don't speak english very good.

What's difference between caching and State?





Reply With Quote
Reply




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.