Memcached::getServerList

(PECL memcached >= 0.1.0)

Memcached::getServerList获取池中的服务器列表

描述

public Memcached::getServerList(): array

Memcached::getServerList() 返回其服务器池中所有服务器的列表。

参数

此函数没有参数。

返回值

服务器池中所有服务器的列表。

示例

示例 #1 Memcached::getServerList() 示例

<?php
$m
= new Memcached();
$m->addServers(array(
array(
'mem1.domain.com', 11211, 20),
array(
'mem2.domain.com', 11311, 80),
));
var_dump($m->getServerList());
?>

上面的示例将输出

array(2) {
  [0]=>
  array(3) {
    ["host"]=>
    string(15) "mem1.domain.com"
    ["port"]=>
    int(11211)
    ["weight"]=>
    int(20)
  }
  [1]=>
  array(3) {
    ["host"]=>
    string(15) "mem2.domain.com"
    ["port"]=>
    int(11311)
    ["weight"]=>
    int(80)
  }
}

添加注释

用户贡献注释 1 个注释

2
rynop
11 年前
此方法在 v2.1.0 中不再返回“权重”:https://github.com/php-memcached-dev/php-memcached/pull/56
To Top