Skip to content

Commit e292c3b

Browse files
authored
fix prefixes for ZPOPMIN, ZPOPMAX and ZMSCORE
1 parent 45b18eb commit e292c3b

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/Command/Processor/KeyPrefixProcessor.php

+9
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ public function __construct($prefix)
103103
'ZCARD' => $prefixFirst,
104104
'ZSCORE' => $prefixFirst,
105105
'ZREMRANGEBYSCORE' => $prefixFirst,
106+
106107
/* ---------------- Redis 2.0 ---------------- */
107108
'SETEX' => $prefixFirst,
108109
'APPEND' => $prefixFirst,
@@ -132,6 +133,7 @@ public function __construct($prefix)
132133
'PSUBSCRIBE' => $prefixAll,
133134
'PUNSUBSCRIBE' => $prefixAll,
134135
'PUBLISH' => $prefixFirst,
136+
135137
/* ---------------- Redis 2.2 ---------------- */
136138
'PERSIST' => $prefixFirst,
137139
'STRLEN' => $prefixFirst,
@@ -145,6 +147,7 @@ public function __construct($prefix)
145147
'BRPOPLPUSH' => $prefixSkipLast,
146148
'ZREVRANGEBYSCORE' => $prefixFirst,
147149
'WATCH' => $prefixAll,
150+
148151
/* ---------------- Redis 2.6 ---------------- */
149152
'PTTL' => $prefixFirst,
150153
'PEXPIRE' => $prefixFirst,
@@ -157,6 +160,7 @@ public function __construct($prefix)
157160
'EVAL' => $prefixEvalKeys,
158161
'EVALSHA' => $prefixEvalKeys,
159162
'MIGRATE' => $prefixMigrate,
163+
160164
/* ---------------- Redis 2.8 ---------------- */
161165
'SSCAN' => $prefixFirst,
162166
'ZSCAN' => $prefixFirst,
@@ -169,6 +173,7 @@ public function __construct($prefix)
169173
'ZREMRANGEBYLEX' => $prefixFirst,
170174
'ZREVRANGEBYLEX' => $prefixFirst,
171175
'BITPOS' => $prefixFirst,
176+
172177
/* ---------------- Redis 3.2 ---------------- */
173178
'HSTRLEN' => $prefixFirst,
174179
'BITFIELD' => $prefixFirst,
@@ -178,6 +183,7 @@ public function __construct($prefix)
178183
'GEODIST' => $prefixFirst,
179184
'GEORADIUS' => $prefixGeoradius,
180185
'GEORADIUSBYMEMBER' => $prefixGeoradius,
186+
181187
/* ---------------- Redis 5.0 ---------------- */
182188
'XADD' => $prefixFirst,
183189
'XRANGE' => $prefixFirst,
@@ -186,9 +192,12 @@ public function __construct($prefix)
186192
'XLEN' => $prefixFirst,
187193
'XACK' => $prefixFirst,
188194
'XTRIM' => $prefixFirst,
195+
'ZPOPMIN' => $prefixFirst,
196+
'ZPOPMAX' => $prefixFirst,
189197

190198
/* ---------------- Redis 6.2 ---------------- */
191199
'GETDEL' => $prefixFirst,
200+
'ZMSCORE' => $prefixFirst,
192201

193202
/* ---------------- Redis 7.0 ---------------- */
194203
'EXPIRETIME' => $prefixFirst,

0 commit comments

Comments
 (0)