Hey!
i’m using the WordPress app on Cloudron with the Redis Object Cache plugin.
i’ve allocated 4 GB RAM to Redis, but it keeps filling up over time because there’s no TTL on the keys. i’d rather use Redis’s built-in eviction instead of fixed expirations, like allkeys-lru or allkeys-lfu, so it automatically removes least-used or oldest keys when full.
i couldn’t find any option for eviction policy in the Cloudron UI or documentation.
how can i set (or persist) maxmemory-policy allkeys-lru for the Redis instance that my WP app uses?
and where is the redis.conf file located for that instance (if it’s editable from the terminal)?
thanks!