设为首页 加入收藏

TOP

PHPredis操作类个人总结(二)
2015-07-24 11:58:06 来源: 作者: 【 】 浏览:9
Tags:PHPredis 操作 个人 总结
数据自减 * @param string $key KEY名称 */ public function decrement($key) { return $this->redis->decr($key); } /** * 判断key是否存在 * @param string $key KEY名称 */ public function isExists($key){ return $this->redis->exists($key); } /** * 重命名- 当且仅当newkey不存在时,将key改为newkey ,当newkey存在时候会报错哦RENAME * 和 rename不一样,它是直接更新(存在的值也会直接更新) * @param string $Key KEY名称 * @param string $newKey 新key名称 */ public function updateName($key,$newKey){ return $this->redis->RENAMENX($key,$newKey); } /** * 获取KEY存储的值类型 * none(key不存在) int(0) string(字符串) int(1) list(列表) int(3) set(集合) int(2) zset(有序集) int(4) hash(哈希表) int(5) * @param string $key KEY名称 */ public function dataType($key){ return $this->redis->type($key); } /** * 清空数据 */ public function flushAll() { return $this->redis->flushAll(); } /** * 返回redis对象 * redis有非常多的操作方法,我们只封装了一部分 * 拿着这个对象就可以直接调用redis自身方法 * eg:$redis->redisOtherMethods()->keys('*a*') keys方法没封 */ public function redisOtherMethods() { return $this->redis; } }
首页 上一页 1 2 下一页 尾页 2/2/2
】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
分享到: 
上一篇CAPI函数描述(A-F) 下一篇alittleriakbook

评论

帐  号: 密码: (新用户注册)
验 证 码:
表  情:
内  容:

·如何理解智能指针? (2025-12-24 12:48:26)
·c++是否应避免使用普 (2025-12-24 12:48:23)
·如何通俗易懂学会 C+ (2025-12-24 12:48:21)
·在 C 语言函数中,如 (2025-12-24 12:19:41)
·C盘里面的AppData文 (2025-12-24 12:19:38)