码迷,mamicode.com
首页 > 系统相关 > 详细

memcache实例

时间:2015-01-27 23:19:34      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:

<?php

class demo { private $str_attr; private $int_attr; public function __get($name) { return $this->$name; } public function __set($name, $value) { $this->$name = $value; } } $memcache = new Memcache; $memcache->connect(‘localhost‘, 11211); $version = $memcache->getversion(); echo "Server‘s version: " . $version; $tmp_object = new demo(); $tmp_object->str_attr = ‘test‘; $tmp_object->int_attr = 123; $memcache->set(‘key‘, $tmp_object, false, 10) or die(‘faild to save data at the server‘); echo "Store data in the cache (data will expire in 10 seconds)<br />\n"; $get_result = $memcache->get(‘key‘); echo "Data from the cache:<br />\n"; var_dump($get_result); echo $get_result->str_attr; echo $get_result->int_attr; ?>

memcache实例

标签:

原文地址:http://www.cnblogs.com/timelesszhuang/p/4254074.html

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