gpt4 book ai didi

PHP memcache - 检查池中是否有可用服务器?

转载 作者:可可西里 更新时间:2023-11-01 13:58:10 24 4
gpt4 key购买 nike

我有以下代码:

$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' );
}

我想创建一个函数来检查我的内存缓存池中的任何服务器是否可用。这是怎么做到的?

最佳答案

您可以使用 Memcache::getServerStatus 检查服务器的状态.

关于PHP memcache - 检查池中是否有可用服务器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2891868/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com