1 Star 0 Fork 0

林桐/memcache缓存

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
data.php 741 Bytes
一键复制 编辑 原始数据 按行查看 历史
林桐 提交于 2023-09-18 17:58 . update
<?php
// 连接池
$mem = new Memcached();
$servers = [
['127.0.0.1', 11211],
// ...
];
$mem->addServers($servers);
$mem->add('mkey', 'mvalue', 600);
$mem->add('mkey', 'mvalue2', 600); // 多次执行,后者的不会覆盖之前的值。使用replace()代替
$mem->replace('mkey', 'mvalue3', 600);
// 当key不存在时,插入,存在时,则覆盖更新
$mem->set('mkey', 'mvalue4', 600);
$mem->delete('mkey');
// 清空所有key
// $mem->flush();
// 自增
$mem->add('num', 5);
$mem->increment('num', 5); // 第一次创建num之后,每次刷新页面,自增+5
echo $mem->get('num'); // 10 15 20 25 30 ...
// 自减
$mem->add('num2', 100);
$mem->decrement('num2', 5);
echo $mem->get('num2'); // 95 90 85 80 ...
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lintong/memcache.git
[email protected]:lintong/memcache.git
lintong
memcache
memcache缓存
master

搜索帮助