Merlin
Merlin

Reputation: 25659

Installing Redis JSON on MacOSx with brew

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

Upvotes: 1

Views: 2976

Answers (1)

Guy Royse
Guy Royse

Reputation: 4312

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.

Upvotes: 9

Related Questions