Returns all values in the hash stored at key.
redis.hset("myhash", values={ "field1": "Hello", "field2": "World" }) assert redis.hvals("myhash") == ["Hello", "World"]
The key of the hash.
All values in the hash, or an empty list when key does not exist.
Was this page helpful?