MichaCo / CacheManager

CacheManager is an open source caching abstraction layer for .NET written in C#. It supports various cache providers and implements many advanced features.
http://cachemanager.michaco.net
Apache License 2.0
2.34k stars 457 forks source link

How do I get all the data in the region? #227

Closed MonkSoul closed 6 years ago

MonkSoul commented 6 years ago
_cache.Put("key","value","region");
_cache.Put("key1","value1","region");
_cache.Put("key2","value2","region");
...

I want to get all datas in the name of "region" region.
Like this

var datas=_cache.GetAll("*");

or

var datas=_cache.GetAll("^key","region");
MichaCo commented 6 years ago

duplicate of #225