Make ZMSCORE command Prefixable and add to a ClusterStrategy (#1692)

* Make ZMSCORE command Prefixable and add to a ClusterStrategy

* Updated CHANGELOG.md

* Codestyle fixes
This commit is contained in:
Vladyslav Vildanov
2026-06-18 17:50:20 +03:00
committed by GitHub
parent a1ede6c5e8
commit b6b7f0d4e0
9 changed files with 38 additions and 4 deletions
@@ -485,6 +485,10 @@ class KeyPrefixProcessorTest extends PredisTestCase
['key', 'member'],
['prefix:key', 'member'],
],
['ZMSCORE',
['key', 'member1', 'member2'],
['prefix:key', 'member1', 'member2'],
],
['ZREMRANGEBYSCORE',
['key', 0, 10],
['prefix:key', 0, 10],