123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using Microsoft.Extensions.DependencyInjection;
- using Microsoft.Extensions.Caching.Memory;
- using YiSha.Cache.Interface;
- using YiSha.Util;
- namespace YiSha.MemoryCache
- {
- public class MemoryCacheImp : ICache
- {
- private IMemoryCache cache = GlobalContext.ServiceProvider.GetService<IMemoryCache>();
- public bool SetCache<T>(string key, T value, DateTime? expireTime = null)
- {
- try
- {
- if (expireTime == null)
- {
- return cache.Set<T>(key, value) != null;
- }
- else
- {
- return cache.Set(key, value, (expireTime.Value - DateTime.Now)) != null;
- }
- }
- catch (Exception ex)
- {
- LogHelper.Error(ex);
- }
- return false;
- }
- public bool RemoveCache(string key)
- {
- cache.Remove(key);
- return true;
- }
- public T GetCache<T>(string key)
- {
- var value = cache.Get<T>(key);
- return value;
- }
- #region Hash
- public int SetHashFieldCache<T>(string key, string fieldKey, T fieldValue)
- {
- return SetHashFieldCache<T>(key, new Dictionary<string, T> { { fieldKey, fieldValue } });
- }
- public int SetHashFieldCache<T>(string key, Dictionary<string, T> dict)
- {
- int count = 0;
- foreach (string fieldKey in dict.Keys)
- {
- count += cache.Set(key, dict) != null ? 1 : 0;
- }
- return count;
- }
- public T GetHashFieldCache<T>(string key, string fieldKey)
- {
- var dict = GetHashFieldCache<T>(key, new Dictionary<string, T> { { fieldKey, default(T) } });
- return dict[fieldKey];
- }
- public Dictionary<string, T> GetHashFieldCache<T>(string key, Dictionary<string, T> dict)
- {
- var hashFields = cache.Get<Dictionary<string, T>>(key);
- foreach (KeyValuePair<string, T> keyValuePair in hashFields.Where(p => dict.Keys.Contains(p.Key)))
- {
- dict[keyValuePair.Key] = keyValuePair.Value;
- }
- return dict;
- }
- public Dictionary<string, T> GetHashCache<T>(string key)
- {
- Dictionary<string, T> dict = new Dictionary<string, T>();
- var hashFields = cache.Get<Dictionary<string, T>>(key);
- foreach (string field in hashFields.Keys)
- {
- dict[field] = hashFields[field];
- }
- return dict;
- }
- public List<T> GetHashToListCache<T>(string key)
- {
- List<T> list = new List<T>();
- var hashFields = cache.Get<Dictionary<string, T>>(key);
- foreach (string field in hashFields.Keys)
- {
- list.Add(hashFields[field]);
- }
- return list;
- }
- public bool RemoveHashFieldCache(string key, string fieldKey)
- {
- Dictionary<string, bool> dict = new Dictionary<string, bool> { { fieldKey, false } };
- dict = RemoveHashFieldCache(key, dict);
- return dict[fieldKey];
- }
- public Dictionary<string, bool> RemoveHashFieldCache(string key, Dictionary<string, bool> dict)
- {
- var hashFields = cache.Get<Dictionary<string, object>>(key);
- foreach (string fieldKey in dict.Keys)
- {
- dict[fieldKey] = hashFields.Remove(fieldKey);
- }
- return dict;
- }
- #endregion
- }
- }
|