Hello,
I have one code base.
I would like to use redis but only on some of my deployments.
The doc says add this :
cultofcoders:redis-oplog
disable-oplog
Then on some deployments where I would like to use redis, I define some settings :
"redisOplog": { "redis": { "port": 6379, "host": "127.0.0.1", "database": "my-localhost" }, "retryIntervalMs": 10000, "mutationDefaults": { "optimistic": false, "pushToRedis": true }, "debug": true },
Until there no problem.
But then on other deployments where I don’t want to use redis but the normal oplog. I think that not defining redisOplog is not enough. I have the disable-oplog package activated so I am im polling.
Is there a way to use settings.json to still activate the oplog even if we have disable-oplog package ?