A very basic and quick TLDR; installation of redis for OSX and Linux users.
$ brew install redis
$ sudo apt-get install redis-server
You'll need two terminal sessions. One to run redis-server
the other to run redis-cli
.
In the redis-cli prompt... When you type ping, you should get a pong back!
$ redis-cli > ping
// PONG