brkysnol Hello Whenever I browse my website, I check that: MISS If I refresh the page (f5) it changes to: HIT So I think the cache time lasts a few seconds. How to increase it?. What I really need, is for new users to receive HIT Regards
marty brkysnol Whenever I browse my website, I check that: MISS How long since you last checked..? brkysnol So I think the cache time lasts a few seconds. How to increase it?. So it looks you're using redis for page caching. In which case if you look at e.g. /etc/nginx/common/redis-php82.conf it appears to be set to an expiry of 14400 by default (according to redis expire is in seconds which would make it 4 hours):- redis2_query expire $key 14400 You can change it to whatever you like by creating a .custom version of the .conf file as explained here.