コード例 #1
0
        public void RemoveByPrefix(string prefix)
        {
            var keys = _caching.Keys(prefix);

            foreach (var key in keys)
            {
                _caching.Remove(key);
            }
        }