You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by ri...@apache.org on 2022/02/04 20:49:52 UTC

[geode] branch GEODE-9892-Create-Infrastructure-for-Redis-Lists updated (0248596 -> 38b32f6)

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

ringles pushed a change to branch GEODE-9892-Create-Infrastructure-for-Redis-Lists
in repository https://gitbox.apache.org/repos/asf/geode.git.


 discard 0248596  Test rework to address most PR reviews
 discard 12c8c36  PR feedback updates
 discard eecdd5f  Add initial support for RedisLists - implements LPUSH, LPOP, LLEN
     add 064fe00  GEODE-9999: Update the Geode for Redis documentation (#7326)
     add 6413c33  GEODE-9994 Make Redis RENAME atomic (#7328)
     add afa17f6  GEODE-9833: SPOP Command Support (#7319)
     add cc31c15  Initial commit (#7335)
     add 507565e  GEODE-9710: Cleanup PRColocationDUnitTestHelper (#6969)
     add 31cb069  Add initial support for RedisLists - implements LPUSH, LPOP, LLEN
     add 38b32f6  Comment fix, rebase

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (0248596)
            \
             N -- N -- N   refs/heads/GEODE-9892-Create-Infrastructure-for-Redis-Lists (38b32f6)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .../cache/execute/PRTransactionDUnitTest.java      |   2 +-
 geode-docs/images_svg/geode_for_redis.svg          | 189 ---------------
 .../tools_modules/geode_for_redis.html.md.erb      | 136 +++++------
 ...java => PRColocationDistributedTestHelper.java} |   2 +-
 .../internal/cache/execute/data/Customer.java      |   5 +-
 .../geode/internal/cache/execute/data/Order.java   |   5 +-
 .../internal/cache/execute/data/Shipment.java      |   5 +-
 geode-for-redis/README.md                          |   1 +
 .../commands/executor/hash/HExistsDUnitTest.java   |   3 -
 .../commands/executor/hash/HGetDUnitTest.java      |   3 -
 .../commands/executor/hash/HKeysDUnitTest.java     |   4 -
 .../commands/executor/hash/HMgetDUnitTest.java     |   3 -
 .../commands/executor/hash/HMsetDUnitTest.java     |   4 -
 .../commands/executor/hash/HsetDUnitTest.java      |   4 -
 .../commands/executor/key/ExpireDUnitTest.java     |   4 -
 .../commands/executor/key/RenameDUnitTest.java     | 117 ++++++++--
 .../executor/pubsub/PubSubConcurrentDUnitTest.java |   2 -
 .../commands/executor/pubsub/PubSubDUnitTest.java  |   6 -
 .../commands/executor/set/SaddDUnitTest.java       |   4 -
 .../commands/executor/set/SremDUnitTest.java       |   4 -
 .../hash/AbstractHashesIntegrationTest.java        |  14 --
 .../server/AbstractHitsMissesIntegrationTest.java  |   9 +-
 .../executor/set/AbstractSPopIntegrationTest.java  | 256 ++++++++-------------
 .../executor/set/AbstractSetsIntegrationTest.java  |  13 --
 .../redis/internal/commands/RedisCommandType.java  |   7 +-
 .../executor/key/AbstractRenameExecutor.java       |   4 +-
 .../commands/executor/set/SPopExecutor.java        |  53 ++---
 .../commands/executor/set/SRandMemberExecutor.java |  19 +-
 .../commands/executor/set/SetRandomExecutor.java   |  23 +-
 .../geode/redis/internal/data/NullRedisSet.java    |   3 +-
 .../apache/geode/redis/internal/data/RedisSet.java | 131 +++++++----
 .../SizeableObjectOpenCustomHashSetWithCursor.java |  23 +-
 32 files changed, 428 insertions(+), 630 deletions(-)
 delete mode 100644 geode-docs/images_svg/geode_for_redis.svg
 rename geode-dunit/src/main/java/org/apache/geode/internal/cache/execute/{PRColocationDUnitTestHelper.java => PRColocationDistributedTestHelper.java} (95%)