Return all field names in the hash stored at key.
redis.hset("myhash", values={ "field1": "Hello", "field2": "World" }) assert redis.hkeys("myhash") == ["field1", "field2"]
The key of the hash.
The field names of the hash
Was this page helpful?