using Microsoft.Extensions.Caching.Memory; using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Text.RegularExpressions; using System.Threading.Tasks; namespace Znyc.Recruitment.Admin.Commons.Cache { /// /// MemoryCache缓存操作 /// public class MemoryCacheService : ICacheService { /// /// protected IMemoryCache _cache; /// /// /// public MemoryCacheService(IMemoryCache cache) { _cache = cache; } #region 验证缓存项是否存在 /// /// 验证缓存项是否存在,TryGetValue 来检测 Key是否存在的 /// /// 缓存Key /// public bool Exists(string key) { if (key == null) { throw new ArgumentNullException(nameof(key)); } return _cache.TryGetValue(key, out object cached); } #endregion 验证缓存项是否存在 public Task AddAsync(string key, object value) { throw new NotImplementedException(); } public Task AddAsync(string key, object value, TimeSpan expiresIn, bool isSliding = false) { throw new NotImplementedException(); } public Task RemoveAsync(string key) { throw new NotImplementedException(); } /// /// public void Dispose() { if (_cache != null) { _cache.Dispose(); } GC.SuppressFinalize(this); } #region 添加缓存 /// /// 添加缓存 /// /// 缓存Key /// 缓存Value /// public bool Add(string key, object value) { if (key == null) { throw new ArgumentNullException(nameof(key)); } if (value == null) { throw new ArgumentNullException(nameof(value)); } _cache.Set(key, value); return Exists(key); } /// /// 添加缓存 /// /// 缓存Key /// 缓存Value /// 滑动过期时长(如果在过期时间内有操作,则以当前时间点延长过期时间) /// 绝对过期时长 /// public bool Add(string key, object value, TimeSpan expiresSliding, TimeSpan expiressAbsoulte) { if (key == null) { throw new ArgumentNullException(nameof(key)); } if (value == null) { throw new ArgumentNullException(nameof(value)); } _cache.Set(key, value, new MemoryCacheEntryOptions() .SetSlidingExpiration(expiresSliding) .SetAbsoluteExpiration(expiressAbsoulte) ); return Exists(key); } /// /// 添加缓存 /// /// 缓存Key /// 缓存Value /// 缓存时长 /// 是否滑动过期(如果在过期时间内有操作,则以当前时间点延长过期时间) /// public bool Add(string key, object value, TimeSpan expiresIn, bool isSliding = false) { if (key == null) { throw new ArgumentNullException(nameof(key)); } if (value == null) { throw new ArgumentNullException(nameof(value)); } if (isSliding) { _cache.Set(key, value, new MemoryCacheEntryOptions() .SetSlidingExpiration(expiresIn) ); } else { _cache.Set(key, value, new MemoryCacheEntryOptions() .SetAbsoluteExpiration(expiresIn) ); } return Exists(key); } public Task HashSetAsync(string key, string filed, object value) { throw new NotImplementedException(); } #endregion 添加缓存 #region 删除缓存 /// /// 删除缓存 /// /// 缓存Key /// public bool Remove(string key) { if (key == null) { throw new ArgumentNullException(nameof(key)); } _cache.Remove(key); return !Exists(key); } /// /// 批量删除缓存 /// /// 缓存Key集合 /// public void RemoveAll(IEnumerable keys) { if (keys == null) { throw new ArgumentNullException(nameof(keys)); } keys.ToList().ForEach(item => _cache.Remove(item)); } /// /// 删除所有缓存 /// public void RemoveCacheAll() { List l = GetCacheKeys(); foreach (string s in l) { Remove(s); } } /// /// 删除匹配到的缓存 /// /// /// public void RemoveByPattern(string pattern) { IList l = SearchCacheRegex(pattern); foreach (string s in l) { Remove(s); } } /// /// 搜索 匹配到的缓存 /// /// /// public IList SearchCacheRegex(string pattern) { List cacheKeys = GetCacheKeys(); List l = cacheKeys.Where(k => Regex.IsMatch(k, pattern)).ToList(); return l.AsReadOnly(); } #endregion 删除缓存 #region 获取缓存 /// /// 获取缓存 /// /// 缓存Key /// public T Get(string key) where T : class { if (key == null) { throw new ArgumentNullException(nameof(key)); } return _cache.Get(key) as T; } /// /// 获取缓存 /// /// 缓存Key /// public object Get(string key) { if (key == null) { throw new ArgumentNullException(nameof(key)); } return _cache.Get(key); } /// /// 获取缓存集合 /// /// 缓存Key集合 /// public IDictionary GetAll(IEnumerable keys) { if (keys == null) { throw new ArgumentNullException(nameof(keys)); } Dictionary dict = new Dictionary(); keys.ToList().ForEach(item => dict.Add(item, _cache.Get(item))); return dict; } /// /// 获取所有缓存键 /// /// public List GetCacheKeys() { const BindingFlags flags = BindingFlags.Instance | BindingFlags.NonPublic; object entries = _cache.GetType().GetField("_entries", flags).GetValue(_cache); IDictionary cacheItems = entries as IDictionary; List keys = new List(); if (cacheItems == null) { return keys; } foreach (DictionaryEntry cacheItem in cacheItems) { keys.Add(cacheItem.Key.ToString()); } return keys; } #endregion 获取缓存 #region 修改缓存 /// /// 修改缓存 /// /// 缓存Key /// 新的缓存Value /// public bool Replace(string key, object value) { if (key == null) { throw new ArgumentNullException(nameof(key)); } if (value == null) { throw new ArgumentNullException(nameof(value)); } if (Exists(key)) { if (!Remove(key)) { return false; } } return Add(key, value); } /// /// 修改缓存 /// /// 缓存Key /// 新的缓存Value /// 滑动过期时长(如果在过期时间内有操作,则以当前时间点延长过期时间) /// 绝对过期时长 /// public bool Replace(string key, object value, TimeSpan expiresSliding, TimeSpan expiressAbsoulte) { if (key == null) { throw new ArgumentNullException(nameof(key)); } if (value == null) { throw new ArgumentNullException(nameof(value)); } if (Exists(key)) { if (!Remove(key)) { return false; } } return Add(key, value, expiresSliding, expiressAbsoulte); } /// /// 修改缓存 /// /// 缓存Key /// 新的缓存Value /// 缓存时长 /// 是否滑动过期(如果在过期时间内有操作,则以当前时间点延长过期时间) /// public bool Replace(string key, object value, TimeSpan expiresIn, bool isSliding = false) { if (key == null) { throw new ArgumentNullException(nameof(key)); } if (value == null) { throw new ArgumentNullException(nameof(value)); } if (Exists(key)) { if (!Remove(key)) { return false; } } return Add(key, value, expiresIn, isSliding); } #endregion 修改缓存 #region Hash /// /// /// /// /// /// public bool HSet(string key, string filed, object value) { return RedisHelper.HSet(key, filed, value); } /// /// /// /// /// /// public Task HSetAsync(string key, string filed, object value) { return RedisHelper.HSetAsync(key, filed, value); } /// /// /// /// /// public Task HMSetAsync(string key, object[] value) { return RedisHelper.HMSetAsync(key, value); } /// /// /// /// /// public bool HMSet(string key, object[] value) { return RedisHelper.HMSet(key, value); } /// /// /// /// /// public string[] HMGet(string key, string[] filed) { return RedisHelper.HMGet(key, filed); } /// /// /// /// /// public Task HMGetAsync(string key, string filed) { return RedisHelper.HMGetAsync(key, filed); } /// /// /// /// /// public long HDel(string key, string[] filed) { return RedisHelper.HDel(key, filed); } /// /// /// /// /// public Task HDelAsync(string key, string filed) { return RedisHelper.HDelAsync(key, filed); } /// /// /// /// /// public bool HExists(string key, string filed) { return RedisHelper.HExists(key, filed); } /// /// /// /// /// public Task HExistsAsync(string key, string filed) { return RedisHelper.HExistsAsync(key, filed); } /// /// /// /// /// public Task HIncrByAsync(string key, string filed) { return RedisHelper.HIncrByAsync(key, filed); } /// /// /// /// /// public long HIncrBy(string key, string filed) { return RedisHelper.HIncrBy(key, filed); } /// /// /// /// public Task> HGetAllAsync(string key) { return RedisHelper.HGetAllAsync(key); } /// /// /// /// public Dictionary HGetAll(string key) { return RedisHelper.HGetAll(key); } /// /// /// /// /// public async Task HGetAsync(string key, string filed) { return await RedisHelper.HGetAsync(key, filed); } /// /// /// /// /// /// public Task HSetNxAsync(string key, string filed, object value) { return RedisHelper.HSetNxAsync(key, filed, value); } /// /// /// /// /// /// public bool HSetNx(string key, string filed, object value) { return RedisHelper.HSetNx(key, filed, value); } #endregion Hash } }