Memcached::addServers
Add multiple servers to the server pool
Description
public bool Memcached::addServers(array $servers
)
The same server may appear multiple times in the server pool, because no
duplication checks are made. This is not advisable; instead, use the
weight
option to increase the selection weighting of
this server.
Parameters
-
array
-
Array of the servers to add to the pool.
Return Values
Returns true
on success or false
on failure.
Examples
Example #1 Memcached::addServers example
<?php
$m = new Memcached();
$servers = array(
array('mem1.domain.com', 11211, 33),
array('mem2.domain.com', 11211, 67)
);
$m->addServers($servers);
?>
See Also
- Memcached::addServer
- Memcached::resetServerList