Ben aşağıdaki kodu vardır:
$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' );
}
Ben memcache Havuz benim sunucuları herhangi bir kullanılabilir olup olmadığını denetler bir işlevi yapmak istiyorum. Bu nasıl yapılabilir?