Memcached Redux
Uses the Memcached class (not the Memcache class) to implement WP Object Cache
Maintenance 22/1002064d since update
Active installs
200
Downloads
41,446
Reviews
9
Age
13.6y
Tagsadmincacheobject cachememcachedmanage cache
Plugin info
Total downloads: 41,446
Active installs: 200
Total reviews: 9
Average rating: 4.3
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 11
Last updated: 5/7/2020 (2064 days ago)
Added to WordPress: 6/5/2012 (13 years old)
Minimum WordPress version: 3.0
Tested up to WordPress version: 5.4.18
Minimum PHP version: f
Maintenance & Compatibility
Maintenance score
Possibly abandoned • Last updated 2064 days ago • 9 reviews
22/100
Is Memcached Redux abandoned?
Possibly abandoned (last update 2064 days ago).
Compatibility
Requires WordPress: 3.0
Tested up to: 5.4.18
Requires PHP: f
Languages
Similar & Alternatives
Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.
No similar plugins found yet.
Description
Changes the famous Memcached WP Object Cache backend to actually use the Memcached class (not the Memcache class). Implements wp_cache_get_multi() and wp_cache_set_multi()
wp_cache_get_multi( array(
array( 'key', 'group' ),
array( 'key', '' ),
array( 'key', 'group' ),
'key'
) );
wp_cache_set_multi( array(
array( 'key', 'data', 'group' ),
array( 'key', 'data' )
) );
Installation
-
Install memcached on at least one server. Note the connection info. The default is
127.0.0.1:11211. -
Install the PECL memcached extension
-
Copy object-cache.php to wp-content
Frequently Asked Questions
No FAQ available
Review feed
Pothi Kalimuthu
Best Object Cache plugin
Memcached PHP extension and memcached servers are widely supported by many hosts these days (2016). So, this plugin just works with most hosts. Now, I can't see any site without using this plugin for WP Object Cache!
Olaf Lederer
Simple but it works!
Using the object cache plugin on my VPS from Upcloud managed with Serverpilot.
Result? Everything feels much faster
Using now php7.2 and can't wait that the memchached extension becomes available for php7.3
Screenshots
No screenshots available
Changelog
0.1.7
- Improved escaping in debug output ported from Memcached plugin (props @batmoo).
- Fixed PHP notice when no Memcached server:port manually specified.
0.1.6
- Corrected documentation
- Corrected stats collection (props @johnbillion)
0.1.5
- Added support for PHP 7+ by changing to
__constructand pre-initializing stats
0.1.3
- Added support for WP_CACHE_KEY_SALT allowing multiple sites to use the same Memcached server.
0.1.2
- Allows graceful fallback to database object cache in WordPress 3.7+ for users without PECL Memcached available.
- Fixes warning due to replace() call, as it does not take a compression argument in Memcached.
0.1.1
- Fixes a problem with the get_option() function and the return value of wp_cache_get() on Linux
0.1
- Initial release