Exemplo n.º 1
0
 /// <summary>
 /// Returns all fields and values of the hash stored at key.
 /// </summary>
 /// <returns>List of fields and their values stored in the hash, or an empty list when key does not exist.</returns>
 /// <remarks>https://redis.io/commands/hgetall</remarks>
 public Task <HashEntry[]> GetAllAsync()
 {
     return(RedisDb.HashGetAllAsync(KeyName));
 }