wp-spider-cache
wp-spider-cache copied to clipboard
Your friendly neighborhood caching solution for WordPress
Using `create_function` is deprecated in PHP 7.2. Found in `WP_Spider_Cache_Output::do_variants()`
My Memcached instance is protected with [SASL](https://en.wikipedia.org/wiki/Simple_Authentication_and_Security_Layer) and requires a username and password to access. I connect to my Memcached server outside of WordPress I pass a few extra options...
In `/wp-spider-cache/wp-spider-cache/includes/functions.php:1004` the method `add_variant` is protected when calling `wp_output_cache()->add_variant( $function )` which throws warnings. Suggest using a reflection object or changing it to public.
Currently, if the Memcache extension is not installed (but the Memcache**d** extension is), there is a fatal error in `includes/class-object-cache.php`. If I manually change `WP_Spider_Cache_Object::$engine_class_name` to `'Memcached'`, there is no...
Hi, I've installed v6.0.0 from the master branch. I've moved the drop-ins files in `wp-content` and I enabled the plugin. It look like the cache is working, but it doesn't...
Trying the plugin out, keep getting some odd behavior. The plugin was installed via composer (5.0.0), copied drop-ins, activated the plugin. At first, it didn't show any results on the...
I normally prefer to disconnect my object cache backend from the static caching functionality, but this plugin is likely a convenient option for handling both one tool. What would make...
I would like to have Redis support, because there is no decent page cache plugin at the moment that also supports Redis. Would be nice to have support for: -...
The `get_keymaps()` function throws "Undefined offset: 1" notices on single-site installations when processing cache keys. After applying `array_slice()` to remove key prefixes, the code accesses `$parts[1]` without validation. ### Changes...