HGET
Syntax
Section titled “Syntax”HGET key field
HGET returns the value of field present in the string-string map held at key.
The command returns empty string "" if the key or field does not exist.
Examples
Section titled “Examples”localhost:7379> HSET k1 f1 v1OK 1localhost:7379> HGET k1 f1OK "v1"localhost:7379> HGET k2 f1OK ""localhost:7379> HGET k1 f2OK ""