start redis on mac code example

Example 1: install redis on mac pro

//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)

Example 2: how to start redis on mac

// use this command 

redis-server

redis-cli

Example 3: install redis brew

brew update
brew install redis

Example 4: redis mac

wget http://download.redis.io/redis-stable.tar.gz
tar xvzf redis-stable.tar.gz
cd redis-stable
make

Tags:

Misc Example