nginx需要安装ngx_http_consistent_hash模块
nginx配置
在upstream中添加 consistent_hash $request_uri;(相比于负载均衡加了这一行就会实现一致性)
在php.ini中配置
memcache.hash_strategy=consistent
php代码中添加memcache服务
$mem=new memcache();
$mem->addServer('127.0.0.1',11211);//注意upstream做负载均衡不能使用localhost 需要用ip或远程主机名