You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add missing RedisCommand enum entries for ZSet WithScores methods.
The rangeWithScores family of methods (zRangeWithScores, zRangeByScoreWithScores, zRevRangeWithScores, zRevRangeByScoreWithScores) were missing from the RedisCommand enumeration, causing ConnectionSplittingInterceptor to resolve them as UNKNOWN commands.
This resulted in read-only methods being incorrectly queued in MULTI/EXEC blocks instead of executing immediately on separate connections, causing them to return null in transactional contexts.
This commit adds the ZRANGEWITHSCORES, ZRANGEBYSCOREWITHSCORES, ZREVRANGEWITHSCORES, ZREVRANGEBYSCOREWITHSCORES enum entries to RedisCommand.java.
The fix ensures these read-only methods are properly recognized and execute immediately in transactional contexts.
Original Pull Request: #3225Fixes: #3187
Signed-off-by: LeeHyungGeol <rjf1138@naver.com>
(cherry picked from commit 96f250d)
Signed-off-by: Chris Bono <chris.bono@broadcom.com>
0 commit comments