Plugin info

Total downloads: 2,362
Active installs: 0
Total reviews: 0
Average rating: 0
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 1
Last updated: 7/7/2014 (4195 days ago)
Added to WordPress: 7/2/2014 (11 years old)
Minimum WordPress version: 3.4
Tested up to WordPress version: 3.9.40
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 4195 days ago

20/100

Is Memcached Cloud abandoned?

Possibly abandoned (last update 4195 days ago).

Compatibility

Requires WordPress: 3.4
Tested up to: 3.9.40
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

Changed the wordpress-memcached-backend backend to use Memcached ver. 2.2.0 PECL package with SASL authentication support, to implement WP Object Cache.

Inehernt support for Memcached Cloud on Heroku and AppFog- just add the Memcached Cloud add-on.

Credits

We used the wordpress-memcached-backend, so all credit goes to Zack Tollman.

Examples

1.

wp_cache_set('key', 'val');  
wp_cache_get('key');

2.

wp_cache_set_multi ( 
    array ( 'key1' => 'val1', 'key2' => 'val2', 'key3' => 'val3' ), 
    'group1' 
);  

wp_cache_get_multi ( 
    array ( 'key1', 'key2' ), 
    'group1' 
);

Installation

  1. Make sure you have libmemcached installed, built with SASL. See the Memcached Requirements.

  2. Install the Memcached ver. 2.2.0 PECL package.

  3. Define the Memcached servers and SASL credentials in your wp-config.php, as follows:

    global $memcached_servers;
    $memcached_servers = array( array( 'host', port ) );
    
    global $memcached_username;
    $memcached_username = 'sasl_username';
    
    global $memcached_password;
    $memcached_password = 'sasl_password';
    

Note: If running on Heroku or AppFog, just install the Memcached Cloud add-on and your conifguration environment variables will be set.

  1. Move object-cache.php to wp-content/object-cache.php

Frequently Asked Questions

No FAQ available

Review feed

No reviews available

Screenshots

No screenshots available

Changelog

1.0

  • Initial release