Redis.hvals

Return all the 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 values contained into a hash.

  1. List!(string) hvals(string key)
    class Redis
    List!(string)
    hvals
    (
    string key
    )
  2. alias hvals = BinaryRedis.hvals

Meta