1、安装epel,memcached,php,httpd,php的memcache扩展

yum install -y epel*

yum install -y httpd php memcached php*memcache


2、启动httpd,memcache

service httpd start

memcached -d -m 20 -u root -p 12000


3、vim /var/www/html/04.php 

<?php

        phpinfo();

?>


浏览器打开http://192.168.20.95/04.php


使用memcache存储session_浏览器

使用memcache存储session_浏览器_02


有上面的信息,表示php的memcache扩展 是 正确的。。



4、vim /var/www/html/05.php


<?php

        ini_set('session.gc_maxlifetime', 3600);

        ini_set("session.save_handler","memcache");

        ini_set("session.save_path","tcp://127.0.0.1:12000");

        session_start();

        $_SESSION['name'] = "liu de hua";

        echo $_SESSION['name']."<br/>";

        echo session_id().'<br/>';

?>


浏览器打开http://192.168.20.95/05.php


使用memcache存储session_信息_03



5、进入memcache查看

使用memcache存储session_浏览器_04


已经成功了。