memcache实例

<?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; ?>

转载于:https://www.cnblogs.com/timelesszhuang/p/4254074.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值