本文介绍了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' );
}
我想创建一个函数来检查我的内存缓存池中的任何服务器是否可用.该怎么办?
I would like to make a function that checks if any of my servers in my memcache Pool is available. How could this be done?
推荐答案
您可以使用 Memcache查看服务器的状态:: getServerStatus .
这篇关于PHP内存缓存-检查池中是否有任何服务器可用?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!