February 2018
Intermediate to advanced
382 pages
11h 33m
English
To show how to operate Redis using redis-cli, take the following steps:
$ bin/redis-cli HMSET hashkeyA field1 value1 feild2 value2OK
$ bin/redis-cli --raw HGETALL hashkeyAfield1value1feild2value2
$ bin/redis-cli LPUSH listkeyA value1 value2 value3(integer) 3$ bin/redis-cli --csv LRANGE listkeyA 0 -1"value3","value2","value1" ...
Read now
Unlock full access