other

Redis on Mac

// Install redis using homebrew
brew install redis
// Start redis
brew services start redis
// Test if Redis Server is Running
redis-cli ping
//The system responds with a ‘pong’ 
//if the server is up and running.
Was this helpful?