using System; using System.Collections.Generic; using System.Threading.Tasks; using Znyc.Recruitment.Admin.Commons.Core.App; namespace Znyc.Recruitment.Admin.Commons.Cache { /// /// 缓存操作帮助类 /// public class CacheHelper { /// /// 缓存提供模式 /// private static CacheProvider cacheProvider; /// /// 缓存接口 /// private readonly ICacheService cacheservice; /// /// public CacheHelper() { cacheProvider = App.GetService(); if (cacheProvider == null) { throw new ArgumentNullException(nameof(cacheProvider)); } cacheservice = App.GetService(); } /// /// 使用MemoryCache缓存操作 /// /// 是否使用MemoryCache public CacheHelper(bool isMemoryCache = false) { cacheProvider = App.GetService(); if (cacheProvider == null) { throw new ArgumentNullException(nameof(cacheProvider)); } if (isMemoryCache) { cacheservice = App.GetService(); } else { cacheservice = App.GetService(); } } #region 验证缓存项是否存在 /// /// 验证缓存项是否存在,TryGetValue 来检测 Key是否存在的 /// /// 缓存Key /// public bool Exists(string key) { return cacheservice.Exists(key); } #endregion 验证缓存项是否存在 #region 添加缓存 /// /// 添加缓存 /// /// 缓存Key /// 缓存Value /// public bool Add(string key, object value) { return cacheservice.Add(key, value); } /// /// 添加缓存 /// /// 缓存Key /// 缓存Value /// 滑动过期时长(如果在过期时间内有操作,则以当前时间点延长过期时间) /// 绝对过期时长 /// public bool Add(string key, object value, TimeSpan expiresSliding, TimeSpan expiressAbsoulte) { return cacheservice.Add(key, value, expiresSliding, expiressAbsoulte); } /// /// 添加缓存 /// /// 缓存Key /// 缓存Value /// 缓存时长 /// 是否滑动过期(如果在过期时间内有操作,则以当前时间点延长过期时间) /// public bool Add(string key, object value, TimeSpan expiresIn, bool isSliding = false) { return cacheservice.Add(key, value, expiresIn, isSliding); } #endregion 添加缓存 #region 删除缓存 /// /// 删除缓存 /// /// 缓存Key /// public bool Remove(string key) { return cacheservice.Remove(key); } /// /// 批量删除缓存 /// /// 缓存Key集合 /// public void RemoveAll(IEnumerable keys) { cacheservice.RemoveAll(keys); } /// /// 删除匹配到的缓存 /// /// /// public void RemoveByPattern(string pattern) { cacheservice.RemoveByPattern(pattern); } /// /// 删除所有缓存 /// public void RemoveCacheAll() { cacheservice.RemoveCacheAll(); } #endregion 删除缓存 #region 获取缓存 /// /// 获取缓存 /// /// 缓存Key /// public T Get(string key) where T : class { return cacheservice.Get(key); } /// /// 获取缓存 /// /// 缓存Key /// public object Get(string key) { return cacheservice.Get(key); } /// /// 获取缓存集合 /// /// 缓存Key集合 /// public IDictionary GetAll(IEnumerable keys) { return cacheservice.GetAll(keys); } #endregion 获取缓存 #region 修改缓存 /// /// 修改缓存 /// /// 缓存Key /// 新的缓存Value /// public bool Replace(string key, object value) { return cacheservice.Replace(key, value); } /// /// 修改缓存 /// /// 缓存Key /// 新的缓存Value /// 滑动过期时长(如果在过期时间内有操作,则以当前时间点延长过期时间) /// 绝对过期时长 /// public bool Replace(string key, object value, TimeSpan expiresSliding, TimeSpan expiressAbsoulte) { return cacheservice.Replace(key, value, expiresSliding, expiressAbsoulte); } /// /// 修改缓存 /// /// 缓存Key /// 新的缓存Value /// 缓存时长 /// 是否滑动过期(如果在过期时间内有操作,则以当前时间点延长过期时间) /// public bool Replace(string key, object value, TimeSpan expiresIn, bool isSliding = false) { return cacheservice.Replace(key, value, expiresIn, isSliding); } #endregion 修改缓存 #region Hash /// /// /// /// /// /// public bool HSet(string key, string filed, object value) { return cacheservice.HSet(key, filed, value); } /// /// /// /// /// /// public Task HSetAsync(string key, string filed, object value) { return cacheservice.HSetAsync(key, filed, value); } /// /// /// /// /// public Task HMSetAsync(string key, object[] value) { return cacheservice.HMSetAsync(key, value); } /// /// /// /// /// public bool HMSet(string key, object[] value) { return cacheservice.HMSet(key, value); } /// /// /// /// /// public string[] HMGet(string key, string[] filed) { return cacheservice.HMGet(key, filed); } /// /// /// /// /// public Task HMGetAsync(string key, string filed) { return cacheservice.HMGetAsync(key, filed); } /// /// /// /// /// public long HDel(string key, string[] filed) { return cacheservice.HDel(key, filed); } /// /// /// /// /// public Task HDelAsync(string key, string filed) { return cacheservice.HDelAsync(key, filed); } /// /// /// /// /// public bool HExists(string key, string filed) { return cacheservice.HExists(key, filed); } /// /// /// /// /// public Task HExistsAsync(string key, string filed) { return cacheservice.HExistsAsync(key, filed); } /// /// /// /// /// public Task HIncrAsync(string key, string filed) { return cacheservice.HIncrByAsync(key, filed); } /// /// /// /// /// public long HIncr(string key, string filed) { return cacheservice.HIncrBy(key, filed); } /// /// /// /// public Task> HGetAllAsync(string key) { return cacheservice.HGetAllAsync(key); } /// /// /// /// public Dictionary HGetAll(string key) { return cacheservice.HGetAll(key); } /// /// /// /// /// public Task HGetAsync(string key, string filed) { return cacheservice.HGetAsync(key, filed); } /// /// /// /// /// /// public Task HSetNxAsync(string key, string filed, object value) { return cacheservice.HSetNxAsync(key, filed, value); } /// /// /// /// /// /// public bool HSetNx(string key, string filed, object value) { return cacheservice.HSetNx(key, filed, value); } #endregion Hash } }