Home > Net >  Installing Redis JSON on MacOSx with brew
Installing Redis JSON on MacOSx with brew

Time:12-01

How do you install RedisJSON on a macOSx with brew?

How do you enable modules on redis without having to compile redis? I dont want to use docker clients

CodePudding user response:

Redis Stack is probably the easiest way to do this. It has more than just RedisJSON as it includes RediSearch, RedisGraph, RedisBloom, and RedisTimeSeries but will work just fine.

First, tap the Redis Stack Homebrew tap:

brew tap redis-stack/redis-stack

Next, run brew install:

brew install redis-stack

To start Redis you can run:

redis-stack-server

There are some details if you have an existing Redis installation on your Mac that you'll need to follow. Full instructions, including those details, are here.

  • Related