We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1eab4d3 commit f07872fCopy full SHA for f07872f
src/main/java/org/springframework/data/redis/core/RedisCommand.java
@@ -292,12 +292,16 @@ public enum RedisCommand {
292
ZINTERSTORE("rw", 3), //
293
ZRANGE("r", 3), //
294
ZRANGEBYSCORE("r", 3), //
295
+ ZRANGEWITHSCORES("r", 3), //
296
+ ZRANGEBYSCOREWITHSCORES("r", 2), //
297
ZRANK("r", 2, 2), //
298
ZREM("rw", 2), //
299
ZREMRANGEBYRANK("rw", 3, 3), //
300
ZREMRANGEBYSCORE("rw", 3, 3), //
301
ZREVRANGE("r", 3), //
302
ZREVRANGEBYSCORE("r", 3), //
303
+ ZREVRANGEWITHSCORES("r", 3), //
304
+ ZREVRANGEBYSCOREWITHSCORES("r", 2), //
305
ZREVRANK("r", 2, 2), //
306
ZSCORE("r", 2, 2), //
307
ZUNIONSTORE("rw", 3), //
0 commit comments