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