hGetAll abstract method

Future<Map<String, String>> hGetAll(
  1. String key
)

Gets all fields and values of the hash stored at key.

Returns a Map<String, String>. Returns an empty map if the key does not exist. Throws a TRServerException if the key holds a non-hash value.

Implementation

Future<Map<String, String>> hGetAll(String key);