memcache保存php session

1、安装memcached 

#apt-get install memcached

2、安装php-memcache扩展支持;

#apt-get install php5-memcache


set('sess', '11211');
$string = $memobj->get('sess');
echo "string = $string !\n";
$memobj->close();


你可能感兴趣的:(php)