• Just did a Debug on Super Cache. I’m unsure if the Max Age = 3 is a good sign, as our site doesn’t take enough time to load.

    http://Edreach.us — > Any ideas?

    Array
    (
    [headers] => Array
    (
    [date] => Tue, 21 May 2013 23:09:01 GMT
    [server] => Apache
    [accept-ranges] => bytes
    [cache-control] => max-age=3, must-revalidate
    [expires] => Tue, 21 May 2013 23:09:04 GMT

    [vary] => Accept-Encoding,Cookie
    [content-length] => 89284
    [connection] => close
    [content-type] => text/html; charset=utf-8
    )

    http://wordpress.org/extend/plugins/wp-super-cache/

Viewing 1 replies (of 1 total)
  • that’s the browser cache time, not the time it is cached on the server. You don’t really want the browser to cache pages – if you correct even a typo in a post, the browser will show a local cached page. You’d rather cache pages on your server – you can even cache them indefinitely, if they don’t have any dynamic parts – and if you edit the post or page, it will rebuild on the server. The browser should really not cache pages.

    Static assets (images, javascript files, css files, etc) should be cached by browser for a week or a month or however you want. These really don’t change often. But pages should not be cached by a browser.

Viewing 1 replies (of 1 total)
  • The topic ‘Max Age 3? Suggestion for cache rule?’ is closed to new replies.