Beschrijving
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'
);
Installatie
-
Make sure you have libmemcached installed, built with SASL. See the Memcached Requirements.
-
Install the Memcached ver. 2.2.0 PECL package.
-
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.
- Move object-cache.php to wp-content/object-cache.php
Beoordelingen
Er zijn geen beoordelingen voor deze plugin.
Bijdragers & ontwikkelaars
“Memcached Cloud” is open source software. De volgende personen hebben bijgedragen aan deze plugin.
BijdragersVertaal “Memcached Cloud” in je eigen taal.
Interesse in ontwikkeling?
Bekijk de code, haal de SVN repository op, of abonneer je op het ontwikkellog via RSS.
Changelog
1.0
- Initial release