예제 #1
0
 public void RedisDeleteAll(string storeKey) => RedisStatic.DeleteAll(storeKey);
예제 #2
0
 public void RedisUpdate(string storeKey, string itemKey, string data) => RedisStatic.Update(storeKey, itemKey, data);
예제 #3
0
 public void RedisDelete(string storeKey, string itemKey) => RedisStatic.Delete(storeKey, itemKey);
예제 #4
0
 public void RedisUpdate(string storeKey, string itemKey, Dictionary <string, object> data) => RedisStatic.Update(storeKey, itemKey, data);
예제 #5
0
 public void RedisPublish(string message) => RedisStatic.Publish(message);
예제 #6
0
 public string[] RedisSearchKeys(string keyContainText) => RedisStatic.RedisSearchKeys(keyContainText);
예제 #7
0
 public void RedisSaveFile() => RedisStatic.RedisSaveFile();
예제 #8
0
 public void RedisClearDB() => RedisStatic.RedisClearDB();