memcached是什么不解释了,直接步入话题。
要点1:
(1)针对PHP5.2.17,可采用如下版本的软件:
libevent-1.4.13
memcached-1.4.5
memcache-2.2.5
(2)针对PHP5.3.17,可采用如下版本的软件:
libevent-1.4.13
memcached-1.4.4
memcache-3.0.5(php-pecl-memcache-3.0.5)
但是上述组合不是强制的,不一定非要这样做。
要点2:
在memcached的应用中,php必须支持memcache。而且更为关键的是某些memcached的测试页、状态页和ThinkPHP都可能需要用到php里面的addServer函数。
memcache的类或对象中,addServer函数和connect函数不同,addServer要求php必须启用fsockopen函数,对此可以在php.ini中对此函数进行enable。此外fsockopen依赖allow_url_fopen,可以将php.ini中对应的行设置为"allow_url_fopen = On"。