public static string HashGet(string key, string fieldName)
 {
     if (!IsEnable)
     {
         throw new PlatformNotSupportedException("No Redis enable");
     }
     return(RedisDatabase.HashGet(key, fieldName));
 }