@@ -103,6 +103,7 @@ public function __construct($prefix)
103
103
'ZCARD ' => $ prefixFirst ,
104
104
'ZSCORE ' => $ prefixFirst ,
105
105
'ZREMRANGEBYSCORE ' => $ prefixFirst ,
106
+
106
107
/* ---------------- Redis 2.0 ---------------- */
107
108
'SETEX ' => $ prefixFirst ,
108
109
'APPEND ' => $ prefixFirst ,
@@ -132,6 +133,7 @@ public function __construct($prefix)
132
133
'PSUBSCRIBE ' => $ prefixAll ,
133
134
'PUNSUBSCRIBE ' => $ prefixAll ,
134
135
'PUBLISH ' => $ prefixFirst ,
136
+
135
137
/* ---------------- Redis 2.2 ---------------- */
136
138
'PERSIST ' => $ prefixFirst ,
137
139
'STRLEN ' => $ prefixFirst ,
@@ -145,6 +147,7 @@ public function __construct($prefix)
145
147
'BRPOPLPUSH ' => $ prefixSkipLast ,
146
148
'ZREVRANGEBYSCORE ' => $ prefixFirst ,
147
149
'WATCH ' => $ prefixAll ,
150
+
148
151
/* ---------------- Redis 2.6 ---------------- */
149
152
'PTTL ' => $ prefixFirst ,
150
153
'PEXPIRE ' => $ prefixFirst ,
@@ -157,6 +160,7 @@ public function __construct($prefix)
157
160
'EVAL ' => $ prefixEvalKeys ,
158
161
'EVALSHA ' => $ prefixEvalKeys ,
159
162
'MIGRATE ' => $ prefixMigrate ,
163
+
160
164
/* ---------------- Redis 2.8 ---------------- */
161
165
'SSCAN ' => $ prefixFirst ,
162
166
'ZSCAN ' => $ prefixFirst ,
@@ -169,6 +173,7 @@ public function __construct($prefix)
169
173
'ZREMRANGEBYLEX ' => $ prefixFirst ,
170
174
'ZREVRANGEBYLEX ' => $ prefixFirst ,
171
175
'BITPOS ' => $ prefixFirst ,
176
+
172
177
/* ---------------- Redis 3.2 ---------------- */
173
178
'HSTRLEN ' => $ prefixFirst ,
174
179
'BITFIELD ' => $ prefixFirst ,
@@ -178,6 +183,7 @@ public function __construct($prefix)
178
183
'GEODIST ' => $ prefixFirst ,
179
184
'GEORADIUS ' => $ prefixGeoradius ,
180
185
'GEORADIUSBYMEMBER ' => $ prefixGeoradius ,
186
+
181
187
/* ---------------- Redis 5.0 ---------------- */
182
188
'XADD ' => $ prefixFirst ,
183
189
'XRANGE ' => $ prefixFirst ,
@@ -186,9 +192,12 @@ public function __construct($prefix)
186
192
'XLEN ' => $ prefixFirst ,
187
193
'XACK ' => $ prefixFirst ,
188
194
'XTRIM ' => $ prefixFirst ,
195
+ 'ZPOPMIN ' => $ prefixFirst ,
196
+ 'ZPOPMAX ' => $ prefixFirst ,
189
197
190
198
/* ---------------- Redis 6.2 ---------------- */
191
199
'GETDEL ' => $ prefixFirst ,
200
+ 'ZMSCORE ' => $ prefixFirst ,
192
201
193
202
/* ---------------- Redis 7.0 ---------------- */
194
203
'EXPIRETIME ' => $ prefixFirst ,
0 commit comments