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