php8.5
Home/ Manual/ memcached / memcached/ Memcached::addServers

Memcached::addServers

PHP function Edit on GitHub ✎

(PECL memcached >= 0.1.1)

Add multiple servers to the server pool

Description

Memcached::addServers(array $servers): bool

Memcached::addServers() adds servers to the server pool. Each entry in servers is supposed to be an array containing hostname, port, and, optionally, weight of the server. No connection is established to the servers at this time.

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

Success

Examples

Memcached::addServers() example

php
<?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

Source: reference/memcached/memcached/addservers.xml · from the official PHP manual (php/doc-en)