PHP redis操作类 个人总结
<pre name="code" class="php"><span style="font-size:18px;">class MyRedis { private $redis; /**
* @param string $host
* @param int $post
*/
public function __construct($host = '10.102.1.8', $port = 6379) {
$this->redis = new Redis();
$this->redis->connect($host, $port);
return $this->redis;
} /**
* 设置值 构建一个字符串
* @param string $key KEY名称
* @param string $value 设置值
* @param int $timeOut 时间 0表示无过期时间
*/
public function set($key, $value, $timeOut=0) {
$retRes = $this->redis->set($key, $value);
if ($timeOut > 0)
$redis->expire('$key', $timeOut);
return $retRes;
} /*
* 构建一个集合(无序集合)
* @param string $key 集合Y名称
* @param string|array $value 值
*/
public function sadd($key,$value){
return $this->redis->sadd($key,$value);
} /*
* 构建一个集合(有序集合)
* @param string $key 集合名称
* @param string|array $value 值
*/
public function zadd($key,$value){
return $this->redis->zadd($key,$value);
} /**
* 取集合相应元素
* @param string $setName 集合名字
*/
public function smembers($setName){
return $this->redis->smembers($setName);
} /**
* 构建一个列表(先进后去,相似栈)
* @param sting $key KEY名称
* @param string $value 值
*/
public function lpush($key,$value){
echo "$key - $value \n";
return $this->redis->LPUSH($key,$value);
} /**
* 构建一个列表(先进先去,相似队列)
* @param sting $key KEY名称
* @param string $value 值
*/
public function rpush($key,$value){
echo "$key - $value \n";
return $this->redis->rpush($key,$value);
}
/**
* 获取全部列表数据(从头到尾取)
* @param sting $key KEY名称
* @param int $head 開始
* @param int $tail 结束
*/
public function lranges($key,$head,$tail){
return $this->redis->lrange($key,$head,$tail);
} /**
* HASH类型
* @param string $tableName 表名字key
* @param string $key 字段名字
* @param sting $value 值
*/
public function hset($tableName,$field,$value){
return $this->redis->hset($tableName,$field,$value);
} public function hget($tableName,$field){
return $this->redis->hget($tableName,$field);
} /**
* 设置多个值
* @param array $keyArray KEY名称
* @param string|array $value 获取得到的数据
* @param int $timeOut 时间
*/
public function sets($keyArray, $timeout) {
if (is_array($keyArray)) {
$retRes = $this->redis->mset($keyArray);
if ($timeout > 0) {
foreach ($keyArray as $key => $value) {
$this->redis->expire($key, $timeout);
}
}
return $retRes;
} else {
return "Call " . __FUNCTION__ . " method parameter Error !";
}
} /**
* 通过key获取数据
* @param string $key KEY名称
*/
public function get($key) {
$result = $this->redis->get($key);
return $result;
} /**
* 同一时候获取多个值
* @param ayyay $keyArray 获key数值
*/
public function gets($keyArray) {
if (is_array($keyArray)) {
return $this->redis->mget($keyArray);
} else {
return "Call " . __FUNCTION__ . " method parameter Error !";
}
} /**
* 获取全部key名,不是值
*/
public function keyAll() {
return $this->redis->keys('*');
} /**
* 删除一条数据key
* @param string $key 删除KEY的名称
*/
public function del($key) {
return $this->redis->delete($key);
} /**
* 同一时候删除多个key数据
* @param array $keyArray KEY集合
*/
public function dels($keyArray) {
if (is_array($keyArray)) {
return $this->redis->del($keyArray);
} else {
return "Call " . __FUNCTION__ . " method parameter Error !";
}
} /**
* 数据自增
* @param string $key KEY名称
*/
public function increment($key) {
return $this->redis->incr($key);
} /**
* 数据自减
* @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;
} }</span>
PHP redis操作类 个人总结的更多相关文章
- php的redis 操作类,适用于单台或多台、多组redis服务器操作
redis 操作类,包括单台或多台.多组redis服务器操作,适用于业务复杂.高性能要求的 php web 应用. redis.php: <?php /* redis 操作类,适用于单台或多台. ...
- 设计模式之PHP项目应用——单例模式设计Memcache和Redis操作类
1 单例模式简单介绍 单例模式是一种经常使用的软件设计模式. 在它的核心结构中仅仅包括一个被称为单例类的特殊类. 通过单例模式能够保证系统中一个类仅仅有一个实例并且该实例易于外界訪问.从而方便对实例个 ...
- 封装一个redis操作类来操作hash格式
最近项目要用redis,依然是基于tp3.2. 发现thinkphp3.2自带的缓存类并不好使用,就自己封装了一个 目前只支持hash格式,其他数据类型的操作后面用到的时候再补充 <?php / ...
- spring 的redis操作类RedisTemplate
spring 集成的redis操作几乎都在RedisTemplate内了. 已spring boot为例, 再properties属性文件内配置好 redis的参数 spring.redis.host ...
- Java的redis 操作类-优化通用版本
java操作redis多节点处理方式;http://blog.itpub.net/29254281/viewspace-1188644/首先maven引入依赖包 <dependency> ...
- 用C#封装的ServiceStack.redis操作类
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.T ...
- <记录> PHP Redis操作类
namespace common\controller; class Redis { public $redisObj = null; //redis实例化时静态变量 static protected ...
- 实用Redis操作类
<?php /** * ------------------------------------------ * 统一redis的配置与数据存储规范,便于扩展与修改 * # redis通常用于热 ...
- 一个简单清晰的Redis操作类
<?php /** * redis处理的二次封装 * */ class Redis{ private $_redis; private $_config; public function __c ...
随机推荐
- 2014鞍山现场赛C题HDU5072(素筛+容斥原理)
Coprime Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 262144/262144 K (Java/Others) Total ...
- Keepalived+LVS+Nginx负载均衡之高可用
Keepalived+LVS+Nginx负载均衡之高可用 上一篇写了nginx负载均衡,此篇实现高可用(HA).系统整体设计是采用Nginx做负载均衡,若出现Nginx单机故障,则导致整个系统无法正常 ...
- java文件创建、删除、读取、写入操作大全
一.获得控制台用户输入的信息 public String getInputMessage() throws IOException...{ System.out.println("请输入您的 ...
- java 调用mysql的存储过程(简单示例)
首先我在mysql的test数据库里定义了一个student表: create table student4( id int primary key, sanme char(5) ); 插入几 ...
- java实现简单web服务器(分析+源代码)
在日常的开发中,我们用过很多开源的web服务器,例如tomcat.apache等等.现在我们自己实现一个简单的web服务器,基本的功能就是用户点击要访问的资源,服务器将资源发送到客户端的浏览器.为了简 ...
- gustafson,Sun-Ni,Amdahl
gustafson 定律由 John Gustafson首先提出.描述:系统优化某部件所获得的系统性能的改善程度,取决于该部件被使用的频率,或所占总执行时间的比例. Gustafson定理中,加速比与 ...
- Cocos2d-x 2地图步行实现:SPFA算法
本文乃Siliphen原创,转载请注明出处:http://blog.csdn.net/stevenkylelee 上一节<Cocos2d-x 地图行走的实现1:图论与Dijkstra算法> ...
- C#实现仿QQ震动
前提:新建winForm窗体应用程序,放置一个Button,设置按钮的单击事件 ; i < ; i++) { Point p = this.FindForm().Location; ,p.Y+) ...
- Acquire and Release Semantics
An operation has acquire semantics if other processors will always see its effect before any subsequ ...
- Spring Bean的作用域(转)
Spring Bean的作用域 .singleton [单例] eg:<bean id="personService" class="com.yinger.ser ...