redis.hset("myhash", "field1", "Hello") assert redis.hget("myhash", "field1") == "Hello" assert redis.hget("myhash", "field2") is None
Retrieves the value of a hash field.
null
Was this page helpful?