tayyab
tayyab

Reputation: 53

Is Redis ReJSON module compatible with Google Memorystore?

Is Redis ReJSON module compatible with Google Memorystore? I want to store JSON in memorystore, can I use ReJSON module?

Upvotes: 5

Views: 2566

Answers (4)

Babli Sahu
Babli Sahu

Reputation: 21

v6 is compatible. All versions below this are not. Hope this helps.

Upvotes: 2

Carlos
Carlos

Reputation: 41

As of July 13 2020, Memorystore does not support Redis modules, even with the latest Redis version 5.0

Upvotes: 4

sepbot
sepbot

Reputation: 116

Memorystore now supports Redis 4 with a beta tag but they do not support modules: https://cloud.google.com/memorystore/docs/redis/supported-versions#redis_version_40_beta

Upvotes: 2

TasosZG
TasosZG

Reputation: 1294

No you cannot use the ReJSON module because it's currently not supported to use any modules in Google Cloud Memorystore as it is running v3.2.11 and the user modules system was introduced in Redis v4.0. Also in the ReJSON module requirements it stated that it requires Redis v4.0 or above.

Related to this, there is already a public feature request for Google Cloud Memorystore to release v4.0 in which it is stated that:

We are working on releasing 4.0 in Q1 (2019). We will follow up with 5.0 shortly after that.

I cannot confirm it but it can be that after the v4.0 is introduced, you are able to use the ReJSON module.

Upvotes: 5

Related Questions