예제 #1
0
 public void Set <T>(string key, string dataKey, T value)
 {
     RedisBase.HashSet(key, dataKey, value);
 }
예제 #2
0
 public void Remove(string key, string dataKey)
 {
     RedisBase.HashRemove(key, dataKey);
 }
예제 #3
0
 public T Get <T>(string key, string dataKey)
 {
     return(RedisBase.HashGet <T>(key, dataKey));
 }
예제 #4
0
 public bool IsExisted(string key, string dataKey)
 {
     return(RedisBase.HashExist(key, dataKey));
 }
예제 #5
0
 public string Get(string key, string dataKey)
 {
     return(RedisBase.HashGet(key, dataKey));
 }