相关疑难解决方法(0)

PHP内存缓存 - 检查池中是否有可用的服务器?

我有以下代码:

$cluster['local'] = array('host' => '192.168.1.1', 'port' => '11211', 'weight' => 50);
$cluster['local2'] = array('host' => '192.168.1.2', 'port' => '11211', 'weight' => 50);

$this->memcache = new Memcache;

foreach ($this->cluster() as $cluster) {
    $this->memcache->addServer($cluster['host'], $cluster['port'], $this->persistent, $cluster['weight'], 10, 10, TRUE , 'failure' );
}
Run Code Online (Sandbox Code Playgroud)

我想创建一个函数来检查我的memcache池中的任何服务器是否可用.怎么可以这样做?

php memcached libmemcache

5
推荐指数
1
解决办法
5208
查看次数

标签 统计

libmemcache ×1

memcached ×1

php ×1