I am setting the Min & Max age filter in the ListFile processor as below, Min Age – 300 sec [5 minutes] Max Age – 864000 sec [10 days] Then, I touch a file in the file system with the latest timestamp as shown
4 add_header Cache-Control max-age=864000; 5 } 6 7 if ($request_uri ~* “^/linux/|^/t/”) { 8 add_header Cache-Control max-age=86400; 9 } max-age意思是:客户端本地的缓存,在配置的生存时间内的,客户端可以直接使用,超出生存时间的,需要到服务器上取新数据。当然这些还要看客户端浏览器...