You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by je...@apache.org on 2021/10/05 15:21:37 UTC

[geode] branch develop updated (3448e82 -> 4e85e29)

This is an automated email from the ASF dual-hosted git repository.

jensdeppe pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git.


    from 3448e82  GEODE-9623: Unsupported commands should not be returned by COMMAND when not enabled (#6933)
     add 4e85e29  GEODE-9587: Support MSETNX command (#6925)

No new revisions were added by this update.

Summary of changes:
 geode-apis-compatible-with-redis/README.md         |   4 +-
 .../internal/executor/string/MSetDUnitTest.java    |   7 +-
 .../{MSetDUnitTest.java => MSetNXDUnitTest.java}   |  44 +++-----
 .../string/AbstractMSetNXIntegrationTest.java      | 122 +++++++++++++++++----
 .../geode/redis/internal/RedisCommandType.java     |   6 +-
 .../data/RedisStringCommandsFunctionExecutor.java  |  14 ++-
 .../executor/key/AbstractRenameExecutor.java       |   2 +-
 ...MSetExecutor.java => AbstractMSetExecutor.java} |  20 +++-
 .../internal/executor/string/MSetExecutor.java     |  42 ++-----
 .../internal/executor/string/MSetNXExecutor.java   |  46 +++-----
 .../executor/string/RedisStringCommands.java       |   2 +-
 11 files changed, 180 insertions(+), 129 deletions(-)
 copy geode-apis-compatible-with-redis/src/distributedTest/java/org/apache/geode/redis/internal/executor/string/{MSetDUnitTest.java => MSetNXDUnitTest.java} (78%)
 copy geode-apis-compatible-with-redis/src/main/java/org/apache/geode/redis/internal/executor/string/{MSetExecutor.java => AbstractMSetExecutor.java} (75%)
 mode change 100755 => 100644