Redis.hgetAll

Return all the fields and associated values in a hash. <p> <b>Time complexity:</b> O(N), where N is the total number of entries @param key @return All the fields and values contained into a hash.

  1. Map!(string, string) hgetAll(string key)
    class Redis
    Map!(string, string)
    hgetAll
    (
    string key
    )
  2. alias hgetAll = BinaryRedis.hgetAll

Meta