Installing Redis JSON on MacOSx with brew

1.6k Views Asked by At

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

1

There are 1 best solutions below

10
On BEST ANSWER

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.