xxxxxxxxxx
*****Start Redis in the background with src/redis-server****
$ src/redis-server &
*****Make sure that the server is working with a ping src/redis-cli ping******
PONG
*****Using the Redis client again, set the value 'Value' for the key 'Variable'******
127.0.0.1:[Port]> set Variable Value
OK
127.0.0.1:[Port]> get Variable
"Value"