The Cache package contains interfaces and classes that can be used to create caches that can be employed to improve a system’s performance.
Interfaces
ICache
Interface for caches that are used to cache values to improve performance.
Classes
CacheEntry
Data object to store cached values with their keys used by MemoryCache.
MemoryCache
Cache that stores values in the process memory. Remember: This implementation is not suitable for synchronization of distributed processes.
NullCache
Dummy cache implementation that doesn’t do anything.
It can be used in testing or in situations when cache is required but shall be disabled.