Hi folks!
I have recently found Directus, and so far, I absolutely love it! I currently run it on my own desktop using Docker and have been trying to make a small project with it, just to see how it works, and just experimenting with it.
Right now, I am trying to get GraphQL working, however, since the computer I run Directus on is quite slow, I have tried to get the cache working with Redis. I noticed that the times do not decrease after the first request of data, so it seems that the results are not cached. Does anyone know why this is? I set up Directus up with these environment variables in the Docker Compose file, which also has the Redis server in it:
CACHE_ENABLED=true
CACHE_STORE=redis
CACHE_TTL=5m
CACHE_AUTO_PURGE=true
CACHE_SCHEMA=true
REDIS_ENABLED=true
REDIS_HOST=redis
REDIS_PORT=6379
Could someone please help me out?