Skip to content
Snippets Groups Projects
Commit ded095a7 authored by Olav Morken's avatar Olav Morken
Browse files

authmemcookie: Support multiple servers.

This patch adds support for listing multiple servers in the
'memcache.host' option. Patch contributed by Pavel Šejnoha.


git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@1444 44740490-163a-0410-bde0-09ae8108e29a
parent 68c38173
No related branches found
No related tags found
No related merge requests found
......@@ -47,13 +47,14 @@ $config = array(
'groups' => NULL,
/*
* This option contains the hostname of IP address of the memcache server where we should store the
* authentication information. Thos option should match the address part of the
* This option contains the hostnames or IP addresses of the memcache servers where we should store the
* authentication information. Separator is a comma. This option should match the address part of the
* Auth_memCookie_Memcached_AddrPort option in the Auth MemCookie configuration.
*
* Examples:
* 'memcache.host' => '192.168.93.52',
* 'memcache.host' => 'memcache.example.org',
* 'memcache.host' => 'memcache1.example.org,memcache2.example.org'
*
* Default:
* 'memcache.host' => '127.0.0.1',
......
......@@ -125,7 +125,10 @@ class SimpleSAML_AuthMemCookie {
}
$memcache = new Memcache;
$memcache->connect($memcacheHost, $memcachePort);
foreach (split(",",$memcacheHost) as $memcacheHost) {
$memcache->addServer($memcacheHost, $memcachePort);
}
return $memcache;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment