©
Dokumen ini menggunakan Manual laman web PHP Cina Lepaskan
(PECL memcached >= 0.1.1)
Memcached::addServers — 向服务器池中增加多台服务器
$servers
) Memcached::addServers() 向服务器池中增加servers
参数指定的服务器。
servers
中的每一条都是一个包含主机名,端口以及可选的权重等服务器参数。此时并不会与这些服务端建立
连接。
同一台服务器可以在服务器池中多次出现,因为这里没有做重复检测。但这是不推荐的做法,对于期望提高某台服务器
权重的需求,请使用weight
参数。
array
将要增加到池中的服务器列表数组。
成功时返回 TRUE
, 或者在失败时返回 FALSE
。
Example #1 Memcached::addServers() 示例
<?php
$m = new Memcached ();
$servers = array(
array( 'mem1.domain.com' , 11211 , 33 ),
array( 'mem2.domain.com' , 11211 , 67 )
);
$m -> addServers ( $servers );
?>
[#1] Michael Brenden [2011-02-17 03:27:10]
See the note for __construct()
Important to not call ->addServers() every run -- only call it if no servers exist (check getServerList() ); otherwise, since addServers() does not check for dups, it will let you add the same server again and again and again, resultings in hundreds if not thousands of connections to the MC daemon.