Google News
logo
Redis - Quiz(MCQ)
Suppose you want to get the value of a hash field stored at the specified key, which of the following commands will you use?
A)
GET key
B)
HVALS key
C)
HKEYS key
D)
HGET key field

Correct Answer :   HGET key field


Explanation : HGET Key field command is used if you want to get the value of a hash field stored at the specified key.

Advertisement