コード例 #1
0
 protected override void SetCache <TM>(string cacheType, string cacheKey, TM cacheModel, Type rtnType = null)
 {
     _dictCache.SetCache(GetCacheKey(cacheType, cacheKey), cacheModel);
 }
コード例 #2
0
 public static void SetCache(string key, object obj, TimeSpan expire_offset)
 {
     cache.SetCache(key, obj, expire_offset);
 }