batcache
batcache copied to clipboard
A memcached HTML page cache for WordPress.
Props to @tott for this solution.
The `vary_cache_on_function` method [will disallow](https://github.com/Automattic/batcache/blob/6c222ff6ce0fc4eef495fd16f6b764e72878e5d6/advanced-cache.php#L32) all functions containing the substring `open`. This is likely to prevent the user from creating functions that use `fopen`, `opendir` and similar. However it also...
Originally PR #13. Useful for Squid and other proxies to allow stale content to be served if the server has an error: > The stale-if-error HTTP Cache-Control extension improves availability...
Add a flag to easily disable Vary headers
This PR adds a new property to the Batcache object, `$uncached_files`, which is an array of script filenames. Later, when Batcache is returning early for specific filenames (under the "Never...
readme says `Stable Tag: 1.4` https://plugins.svn.wordpress.org/batcache/tags/1.4/readme.txt readme in github says `Stable Tag: 1.2` file says `Version 1.2` in 1.4 branch https://plugins.svn.wordpress.org/batcache/tags/1.4/batcache.php _i haven't diff'd files with what's on wp repo...
It has been identified that Batcache only caches Apache headers. This becomes problematic when the server is nginx.
``` var $times = 2; // Only batcache a page after it is accessed this many times... (two or more) var $seconds = 0; // ...in this many seconds (zero...
First off - fantastic plugin. Thanks for making this available! Secondly, it seems like batcache employs only very simple cache clearing functionality out of the box. What would you recommend...