public void RemoveByPrefix(string prefix) { var keys = _caching.Keys(prefix); foreach (var key in keys) { _caching.Remove(key); } }