Example #1
0
 public void Set <T>(string key, string dataKey, T value)
 {
     BaseMemoryCache.SetCache(dataKey, value);
 }
Example #2
0
 public T Get <T>(string key, string dataKey)
 {
     return(BaseMemoryCache.GetCache <T>(dataKey));
 }
Example #3
0
 public bool IsExisted(string key, string dataKey)
 {
     return(BaseMemoryCache.IsExisted(dataKey));
 }
Example #4
0
 public string Get(string key, string dataKey)
 {
     return(BaseMemoryCache.GetCache(dataKey));
 }