php-memcached的一些研究

http://www.php.net/manual/en/memcached.constants.php

 

 

//开启一致性哈希         取模(默认)/一致性

$m->setOption(Memcached::OPT_DISTRIBUTION,
Memcached::DISTRIBUTION_CONSISTENT);

 

 

$m->setOption(Memcached::OPT_CONNECT_TIMEOUT, 500);
$m->setOption(Memcached::OPT_SEND_TIMEOUT, 500);
$m->setOption(Memcached::OPT_RECV_TIMEOUT, 500);

你可能感兴趣的:(memcached)