I've recently set $wgUseFileCache = true
. Would it be possible to have pages cached for a maximum of 24 hours by setting $wgCacheEpoch = date('YmdHis', strtotime('-24 hours'))
?
I have Cargo query pages which I would probably be happy to have cached for that limited period. I know alternatives are to $wgUseFileCache = false
again, or use MagicNoCache's __NOCACHE__
on the Cargo templates. Are there other options? Thanks. ~~~~