The Cache Service is designed to cache frequently used data in a refreshable,
high performance, thread-safe fashion. There are 2 main implementaions of
the cache system, total cache and most recently used (MRU) cache. The former
is used for caching entire sets of data and the latter is used for caching
only a portion of the entire set of data using a most recently used algorithm
to decide which data to keep (the most recently used data is kept in the cache).
|