Hi, I connected the global Redis cache that’s running from the official docker image like this:
const RedisCacheAdapter = require('parse-server').RedisCacheAdapter
// server config
cacheAdapter: new RedisCacheAdapter({ url: process.env.REDIS_URL }),
//env
REDIS_URL=redis://localhost:6000
The container is up
But the logs are not changing when I’m browsing my app (querying DB).
Is something wrong or do I have to do something to make Parse use Redis?
I was expecting to have the queries saved in the redis and see this from the container logs.