Memcache

来源:互联网 发布:python 打包 三方插件 编辑:程序博客网 时间:2024/04/28 05:10

First you shoule install memcache , this is for windows , memcached-1.2.1-win32.zip in my 163 email .

decompress.

run : memcached.exe -d install    memcached.exe -d start

Then get a PHP extension php_memcache.dll , php_memcache.rar in my 163 email ( only for php 5.2.x).

Add extension=php_memcache.dll in php.ini 

 

Then use the code below to test whether the memcache extension work correctly :

 

 

The result just like this :

Server's version: 1.2.1
Store data in the cache (data will expire in 10 seconds)
Data from the cache:
object(stdClass)#3 (2) { ["str_attr"]=> string(4) "test" ["int_attr"]=> int(123)}