php与memcached配合使用注意事项

1.memcached启动的时候,如果指定了ip,则建立链接的时候socket会绑定到这个连接上。

例如

/home/admin/memcached/bin/memcached -d -m 5000 –I 192.168.1.1

则socket绑定到了192.168.1.1上去,如果在php中链接的时候代码通过127.0.0.1进行链接,

$memcache_obj =memcache_pconnect("127.0.0.1",11211);
会出现如下的warning,memcached没有起到缓存的目前,在线上很危险,很可能会压垮服务器。
PHP Warning:  memcache_set() expects parameter 1 to be Memcache, boolean given in

你可能感兴趣的:(php与memcached配合使用注意事项)