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