check if redis is installed linux code example
Example 1: check redis version
redis-server --version
Example 2: check that redis is running
$ redis-cli ping
PONG
Example 3: redis cache start
sudo /etc/init.d/redis_6379 start
Example 4: install redis
brew install redis