cachify
cachify copied to clipboard
Smart but efficient cache solution for WordPress. Use DB, HDD, APC or Memcached for storing your blog pages. Make WordPress faster!
https://wordpress.org/support/topic/inline-javascript-minifying-doesnt-remove-some-comments/ with workaround
For Apache servers with mod_rewrite.c we can use the rewrite rules filter to add the rewrite rules we need when we use HDD caching. https://codex.wordpress.org/Plugin_API/Action_Reference/generate_rewrite_rules We should think about implementing...
The plugin does not work correctly on AMP pages. If you use AMP in standard mode, Cachify generates a cache that makes it impossible for pages in AMP to load...
He, we are using cachify for long time and our prefered method is hdd caching with nginx setup. works fine but now we found a problem at our server setup,...
Fastest Cache is providing a smart way to trigger the cache flush via Cron Job: https://www.wpfastestcache.com/features/clear-cache-via-url/ A user is asking if this is possible to implement in Cachify here: https://wordpress.org/support/topic/clear-cache-using-cron-job/...
On a multisite installation the `wp cachify flush` command only flushes the cache for the default site. This can be changed with the additional `--url`attribute. Implementing a `--network` attribute would...
If the user is using a caching method which needs a change of the .htaccess file, we should provide the code in the plugin itself for copy&paste. Bonus points if...
https://github.com/pluginkollektiv/cachify/blob/510a51088b2ec1bf7427b6d08abb12d323c86f73/inc/cachify_db.class.php#L102 The DB cache relies on transients that are automatically cached in the object cache (if enabled) like memcache(d), redis etc... Your delete function makes a query for all transients...
In fact that wp-api is being merged into wordpress core soon, you should add support for caching wp-api requests as soon as possible.
It would be useful if the cache can be enabled/disabled for specific user groups. For example in a WooCommerce shop: cache enabled for customers (as cart, checkout and my-account aren't...