CacheManager is an open source caching abstraction layer for .NET written in C#. It supports various cache providers and implements many advanced features.
It would be nice to be able to get multiple cache items in one call (by passing list of keys).
Redis has MGET for this.
CouchbaseNetClient has Get method that accepts list of keys too, but I think they just executing multiple Get operations in parallel.
It would be nice to be able to get multiple cache items in one call (by passing list of keys). Redis has MGET for this. CouchbaseNetClient has Get method that accepts list of keys too, but I think they just executing multiple Get operations in parallel.