public void RedisDeleteAll(string storeKey) => RedisStatic.DeleteAll(storeKey);
public void RedisUpdate(string storeKey, string itemKey, string data) => RedisStatic.Update(storeKey, itemKey, data);
public void RedisDelete(string storeKey, string itemKey) => RedisStatic.Delete(storeKey, itemKey);
public void RedisUpdate(string storeKey, string itemKey, Dictionary <string, object> data) => RedisStatic.Update(storeKey, itemKey, data);
public void RedisPublish(string message) => RedisStatic.Publish(message);
public string[] RedisSearchKeys(string keyContainText) => RedisStatic.RedisSearchKeys(keyContainText);
public void RedisSaveFile() => RedisStatic.RedisSaveFile();
public void RedisClearDB() => RedisStatic.RedisClearDB();