We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db65e5e commit fe676b7Copy full SHA for fe676b7
src/Command/Processor/KeyPrefixProcessor.php
@@ -178,6 +178,12 @@ public function __construct($prefix)
178
'GEODIST' => $prefixFirst,
179
'GEORADIUS' => $prefixGeoradius,
180
'GEORADIUSBYMEMBER' => $prefixGeoradius,
181
+ /* ---------------- Redis 5.0 ---------------- */
182
+ 'XADD' => $prefixFirst,
183
+ 'XRANGE' => $prefixFirst,
184
+ 'XDEL' => $prefixFirst,
185
+ 'XLEN' => $prefixFirst,
186
+ 'XACK' => $prefixFirst,
187
];
188
}
189
0 commit comments