Skip to content
Snippets Groups Projects
Commit 773d3e81 authored by Jeremy Andrews's avatar Jeremy Andrews Committed by Jeremy Andrews
Browse files

Issue #2382225 by Jeremy: Support Memcached SASL

parent a6a1ca8b
No related branches found
No related tags found
No related merge requests found
......@@ -503,3 +503,20 @@ Other options you could experiment with:
reported that this can speed up the Binary protocol (see above). This
tells the TCP stack to send packets immediately and without waiting for
a full payload, reducing per-packet network latency (disabling "Nagling").
It's possible to enable SASL authentication as documented here:
http://php.net/manual/en/memcached.setsaslauthdata.php
https://code.google.com/p/memcached/wiki/SASLHowto
SASL authentication requires a memcached server with SASL support (version 1.4.3
or greater built with --enable-sasl and started with the -S flag) and the PECL
memcached client version 2.0.0 or greater also built with SASL support. Once
these requirements are satisfied you can then enable SASL support in the Drupal
memcache module by enabling the binary protocol and setting
memcache_sasl_username and memcache_sasl_password in settings.php. For example:
$conf['memcache_options'] = array(
Memcached::OPT_BINARY_PROTOCOL => TRUE,
);
$conf['memcache_sasl_username'] = 'yourSASLUsername';
$conf['memcache_sasl_password'] = 'yourSASLPassword';
......@@ -636,6 +636,9 @@ function dmemcache_instance() {
foreach ($memconf as $key => $value) {
$memcache->setOption($key, $value);
}
if ($sasl_username = variable_get('memcache_sasl_username', '') && $sasl_password = variable_get('memcache_sasl_password', '')) {
$memcache->setSaslAuthData($sasl_username, $sasl_password);
}
return $memcache;
}
else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment