Skip to content

Commit 98d4f80

Browse files
authored
Add missing stream key prefixes (#1230)
* Added missing stream key prefixes * Tested stream command key prefixing
1 parent 0e019cc commit 98d4f80

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed

src/Command/Processor/KeyPrefixProcessor.php

+2
Original file line numberDiff line numberDiff line change
@@ -181,9 +181,11 @@ public function __construct($prefix)
181181
/* ---------------- Redis 5.0 ---------------- */
182182
'XADD' => $prefixFirst,
183183
'XRANGE' => $prefixFirst,
184+
'XREVRANGE' => $prefixFirst,
184185
'XDEL' => $prefixFirst,
185186
'XLEN' => $prefixFirst,
186187
'XACK' => $prefixFirst,
188+
'XTRIM' => $prefixFirst,
187189
];
188190
}
189191

tests/Predis/Command/Processor/KeyPrefixProcessorTest.php

+29
Original file line numberDiff line numberDiff line change
@@ -944,6 +944,35 @@ public function commandArgumentsDataProvider(): array
944944
['key', 'member', '100', 'km', 'WITHDIST', 'STORE', 'key:store', 'STOREDIST', 'key:storedist'],
945945
['prefix:key', 'member', '100', 'km', 'WITHDIST', 'STORE', 'prefix:key:store', 'STOREDIST', 'prefix:key:storedist'],
946946
],
947+
/* ---------------- Redis 5.0 ---------------- */
948+
['XADD',
949+
['key', '*', ['field' => 'value']],
950+
['prefix:key', '*', ['field' => 'value']],
951+
],
952+
['XRANGE',
953+
['key', '-', '+'],
954+
['prefix:key', '-', '+'],
955+
],
956+
['XREVRANGE',
957+
['key', '+', '-'],
958+
['prefix:key', '+', '-'],
959+
],
960+
['XDEL',
961+
['key', 'id'],
962+
['prefix:key', 'id'],
963+
],
964+
['XLEN',
965+
['key'],
966+
['prefix:key'],
967+
],
968+
['XACK',
969+
['key', 'group', 'id'],
970+
['prefix:key', 'group', 'id'],
971+
],
972+
['XTRIM',
973+
['key', 'MAXLEN', 100],
974+
['prefix:key', 'MAXLEN', 100],
975+
],
947976
];
948977
}
949978
}

0 commit comments

Comments
 (0)