redis redis cli install mac code example
Example 1: how to start redis on mac
// use this command
redis-server
redis-cli
Example 2: install redis on mac
//Using Homebrew it is quite easy to install-
brew update
brew install redis
//To check
redis-cli ping
//if you are getting PONG Then you are good to go(y)