Saturday 18 April 2015

HGET key field

Syntax
HGET key field
Gets the value of the field stored at key.

Returns
Returns the value of the field (or) nil if the field not exists.

127.0.0.1:6379> hset employee 1 "Silar" 
(integer) 0 
127.0.0.1:6379> hget employee 1 
"Silar" 

Prevoius                                                 Next                                                 Home

No comments:

Post a Comment