February 2018
Intermediate to advanced
382 pages
11h 33m
English
The steps for connecting to Redis using redis-cli down a Redis Server are as follows:
$ bin/redis-cli 127.0.0.1:6379>
The pattern of the preceding prompt is IP:port, indicating redis-cli has connected to this Redis instance successfully.
127.0.0.1:6379> set foo value1 OK 127.0.0.1:6379> set bar value2 OK
127.0.0.1:6379> get foo "value1" 127.0.0.1:6379> get bar "value2"
$ bin/redis-cli ...
Read now
Unlock full access