nonbinaryprogrammer commented on a change in pull request #6534: URL: https://github.com/apache/geode/pull/6534#discussion_r643377623
########## File path: geode-apis-compatible-with-redis/src/main/java/org/apache/geode/redis/internal/data/RedisSortedSetCommandsFunctionExecutor.java ########## @@ -43,4 +43,10 @@ public long zadd(RedisKey key, List<byte[]> scoresAndMembersToAdd, ZAddOptions o public byte[] zscore(RedisKey key, byte[] member) { return stripedExecute(key, () -> getRedisSortedSet(key, true).zscore(member)); } + + @Override + public byte[] zincrby(RedisKey key, byte[] increment, byte[] member) { + return stripedExecute(key, + () -> getRedisSortedSet(key, false).zincrby(getRegion(), key, increment, member)); + } Review comment: done -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org