Clinical Memcachier
Clinical Memcachier
Description
This is a WordPress object cache backend that supports the MemCachier caching service. It requires Memcached ver. 2.2.0 PECL package or greater for SASL support.
This is a fork of tollmanz object cache, adding SASL and binary protocol support for cloud based caches.
Credits
Installation
-
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'; -
Alternatively, set the environment variables,
MEMCACHE_SERVERS,MEMCACHE_USERNAMEandMEMCACHE_PASSWORD. The expected format forMEMCACHE_SERVERSis'server1:port1,server2:port2,server3:port3'.
Note: If running on Heroku or AppFog, just install the MemCachier add-on and your conifguration environment variables will be set.
-
Move object-cache.php to wp-content/object-cache.php
-
To test the WordPress object cache setup, add the following code as an MU plugin:
`php<?php
$key = ‘dummy’;
$value = ‘100’;$dummy_value = wp_cache_get( $key );
if ( $value !== $dummy_value ) {
echo “The dummy value is not in cache. Adding the value now.”;
wp_cache_set( $key, $value );
} else {
echo “Value is ” . $dummy_value . “. The WordPress Memcached Backend is working!”;
}
`After adding the code, reload your WordPress site twice. On the second load, you should see a success message printed at the top of the page. Remove the MU plugin after you’ve verified the setup.
Faq
Installation Instructions
-
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'; -
Alternatively, set the environment variables,
MEMCACHE_SERVERS,MEMCACHE_USERNAMEandMEMCACHE_PASSWORD. The expected format forMEMCACHE_SERVERSis'server1:port1,server2:port2,server3:port3'.
Note: If running on Heroku or AppFog, just install the MemCachier add-on and your conifguration environment variables will be set.
-
Move object-cache.php to wp-content/object-cache.php
-
To test the WordPress object cache setup, add the following code as an MU plugin:
`php<?php
$key = ‘dummy’;
$value = ‘100’;$dummy_value = wp_cache_get( $key );
if ( $value !== $dummy_value ) {
echo “The dummy value is not in cache. Adding the value now.”;
wp_cache_set( $key, $value );
} else {
echo “Value is ” . $dummy_value . “. The WordPress Memcached Backend is working!”;
}
`After adding the code, reload your WordPress site twice. On the second load, you should see a success message printed at the top of the page. Remove the MU plugin after you’ve verified the setup.
Reviews
Best Data Cache
By Phill Healey (munklefish) on November 28, 2017
Changelog
0.4 Packaged for release on WP repo