June 2017
Intermediate to advanced
536 pages
9h 49m
English
Running the redis-cli command on the Ubuntu terminal gets us into the Redis interactive shell. From here on, with a simple few commands, we can add the following sample data:
SET Key1 10SET Key2 20SET Key3 30SET Key4 40SET Key5 50
This should give us the following output:

Using the KEYS * command within the redis-cli shell, we are able to now list all the entries added by Redis:
