Install and run redis in Mac

First please check brew is installed in the mac. If yes,

which brew

use above command to check in brew in the mac. Then,

brew install redis
brew services start redis
redis-cli ping
brew services stop redis

Install redis stack

In terminal,

  1. Run brew tap redis-stack/redis-stack
  2. Run brew install redis-stack
  3. Start Redis withredis-stack-server
  4. To connect to your local Redis server and execute commands, run redis-cli

--

--