实用Redis操作类
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 | <?php /** * ------------------------------------------ * 统一redis的配置与数据存储规范,便于扩展与修改 * # redis通常用于热数据与消息列队等场景 * # list内存储array是采用json格式 * */ class RedisDriver { protected $redis ; // redis对象 protected $ip = '127.0.0.1' ; // redis服务器ip地址 protected $port = '6379' ; // redis服务器端口 protected $passwd = null; // redis密码 public function __construct( $config = array ()) { $this ->redis = new Redis(); empty ( $config ) or $this ->connect( $config ); } // 连接redis服务器 public function connect( $config = array ()) { if (! empty ( $config )) { $this ->ip = $config [ 'ip' ]; $this ->port = $config [ 'port' ]; if (isset( $config [ 'passwd' ])) { $this ->passwd = $config [ 'passwd' ]; } } $state = $this ->redis->connect( $this ->ip, $this ->port); if ( $state == false) { die ( 'redis connect failure' ); } if (! is_null ( $this ->passwd)) { $this ->redis->auth( $this ->passwd); } } // 设置一条String public function setStr( $key , $text , $expire = null) { $key = 'string:' . $key ; $this ->redis->set( $key , $text ); if (! is_null ( $expire )) { $this ->redis->setTimeout( $key , $expire ); } } // 获取一条String public function getStr( $key ) { $key = 'string:' . $key ; $text = $this ->redis->get( $key ); return empty ( $text ) ? null : $text ; } // 删除一条String public function delStr( $key ) { $key = 'string:' . $key ; $this ->redis->del( $key ); } // 设置一条Hash public function setHash( $key , $arr , $expire = null) { $key = 'hash:' . $key ; $this ->redis->hMset( $key , $arr ); if (! is_null ( $expire )) { $this ->redis->setTimeout( $key , $expire ); } } // 获取一条Hash,$fields可为字符串或数组 public function getHash( $key , $fields = null) { $key = 'hash:' . $key ; if ( is_null ( $fields )) { $arr = $this ->redis->hGetAll( $key ); } else { if ( is_array ( $fields )) { $arr = $this ->redis->hmGet( $key , $fields ); foreach ( $arr as $key => $value ) { if ( $value === false) { unset( $arr [ $key ]); } } } else { $arr = $this ->redis->hGet( $key , $fields ); } } return empty ( $arr ) ? null : ( is_array ( $arr ) ? $arr : array ( $fields => $arr )); } // 删除一条Hash,$field为字符串 public function delHash( $key , $field = null) { $key = 'hash:' . $key ; if ( is_null ( $field )) { $this ->redis->del( $key ); } else { $this ->redis->hDel( $key , $field ); } } // 在Hash的field内增加一个值 (值之间使用“,”分隔) public function fieldAddVal( $key , $field , $val ) { $arr = $this ->getHash( $key , $field ); if (! is_null ( $arr )) { $str = reset( $arr ); $arr = explode ( ',' , $str ); foreach ( $arr as $v ) { if ( $v == $val ) { return ; } } $str .= ",{$val}" ; $this ->setHash( $key , array ( $field => $str )); } else { $this ->setHash( $key , array ( $field => $val )); } } // 在Hash的field内删除一个值 public function fieldDelVal( $key , $field , $val ) { $arr = $this ->getHash( $key , $field ); if (! is_null ( $arr )) { $arr = explode ( ',' , reset( $arr )); $tmpStr = '' ; foreach ( $arr as $v ) { if ( $v != $val ) { $tmpStr .= ",{$v}" ; } } if ( $tmpStr == '' ) { $this ->delHash( $key , $field ); } else { $this ->setHash( $key , array ( $field => substr ( $tmpStr , 1))); } } } // 设置表格的一行数据 public function setTableRow( $table , $id , $arr , $expire = null) { $key = '' . $table . ':' . $id ; $this ->redis->hMset( $key , $arr ); if (! is_null ( $expire )) { $this ->redis->setTimeout( $key , $expire ); } } // 获取表格的一行数据,$fields可为字符串或数组 public function getTableRow( $table , $id , $fields = null) { $key = '' . $table . ':' . $id ; if ( is_null ( $fields )) { $arr = $this ->redis->hGetAll( $key ); } else { if ( is_array ( $fields )) { $arr = $this ->redis->hmGet( $key , $fields ); foreach ( $arr as $key => $value ) { if ( $value === false) { unset( $arr [ $key ]); } } } else { $arr = $this ->redis->hGet( $key , $fields ); } } return empty ( $arr ) ? null : ( is_array ( $arr ) ? $arr : array ( $fields => $arr )); } // 删除表格的一行数据 public function delTableRow( $table , $id ) { $key = '' . $table . ':' . $id ; $this ->redis->del( $key ); } // 推送一条数据至列表,头部 public function pushList( $key , $arr ) { $key = 'list:' . $key ; $this ->redis->lPush( $key , json_encode( $arr )); } // 从列表拉取一条数据,尾部 public function pullList( $key , $timeout = 0) { $key = 'list:' . $key ; if ( $timeout > 0) { $val = $this ->redis->brPop( $key , $timeout ); // 该函数返回的是一个数组, 0=key 1=value } else { $val = $this ->redis->rPop( $key ); } $val = is_array ( $val ) && isset( $val [1]) ? $val [1] : $val ; return empty ( $val ) ? null : $this ->objectToArray(json_decode( $val )); } // 取得列表的数据总条数 public function getListSize( $key ) { $key = 'list:' . $key ; return $this ->redis->lSize( $key ); } // 删除列表 public function delList( $key ) { $key = 'list:' . $key ; $this ->redis->del( $key ); } // 使用递归,将stdClass转为array protected function objectToArray( $obj ) { if ( is_object ( $obj )) { $arr = ( array ) $obj ; } if ( is_array ( $obj )) { foreach ( $obj as $key => $value ) { $arr [ $key ] = $this ->objectToArray( $value ); } } return !isset( $arr ) ? $obj : $arr ; } } |
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 深入理解 Mybatis 分库分表执行原理
· 如何打造一个高并发系统?
· .NET Core GC压缩(compact_phase)底层原理浅谈
· 现代计算机视觉入门之:什么是图片特征编码
· .NET 9 new features-C#13新的锁类型和语义
· 《HelloGitHub》第 106 期
· Spring AI + Ollama 实现 deepseek-r1 的API服务和调用
· 数据库服务器 SQL Server 版本升级公告
· 深入理解Mybatis分库分表执行原理
· 使用 Dify + LLM 构建精确任务处理应用