码迷,mamicode.com
首页 > Web开发 > 详细

redis在php中的应用

时间:2015-01-05 12:25:14      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:

 4. $version = $memcache->getVersion();   

   5. echo "Server‘s version: ".$version."<BR>\n";   

   6.   

   7. $tmp_object = new stdClass;   

   8. $tmp_object->str_attr = ‘test‘;   

   9. $tmp_object->int_attr = 123;   

  10.   

  11. $memcache->set(‘key‘, $tmp_object, false, 10) or die ("Failed to save data at the server");   

  12. echo "Store data in the cache (data will expire in 10 seconds)<BR>\n";   

  13.   

  14. $get_result = $memcache->get(‘key‘);   

  15. echo "Data from the cache:<BR>\n";   

  16.   

  17. var_dump($get_result);  

redis在php中的应用

标签:

原文地址:http://www.cnblogs.com/shenming/p/4202961.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!