CacheManager is a cache generic interface abstract class library that supports a variety of cache providers, such as Memcache,redis, and has many advanced features. Specific access to the official website http://cachemanager.net.
The CacheManager design goal is to simplify the programmer's handling of a variety of complex caching scenarios, enabling multiple layers of caching, from in-process caches to distributed caches, by CacheManager only a few lines of code. The CacheManager can easily change the cache policy in the project, and it also provides some more valuable features such as cache synchronization, concurrency updates, event notifications, performance counters, and so on, which are often addressed by our programmers when using caching.
The latest version of CacheManager is 0.6, which supports . NET 4.0,. NET 4.5, ASP. DNX 4.5.1 and Core , which can be installed through NuGet, the following is the associated NuGet package for CacheManager:
Package Name |
. Net 4.0 |
. Net 4.5 |
DNX 4.5.1 |
DNX Core |
Cachemanager.core |
X |
X |
X |
X |
CacheManager.StackExchange.Redis |
X |
X |
X |
- |
Cachemanager.systemruntimecaching |
X |
X |
X |
- |
Cachemanager.memcached |
X |
X |
X |
- |
Cachemanager.web |
- |
X |
X |
- |
Cachemanager.couchbase |
- |
X |
X |
- |
CacheManager also has good documentation support, with detailed documentation both on the author's website and on GitHub (https://github.com/MichaCo/CacheManager/tree/master/Articles):
? Getting Started A basic introduction to how to install and use the cache manager
? Configuration Access How to configure cache Manager with configuration files or code
? Features and Architecture in-depth introduction to all Cache Manager features
? Update Operations explains when and why to use the Update method instead Put
? use case interpretation of cache synchronization caching backplane feature
cachemanager:– Generic Cache Interface abstract class Library