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/02 19:08:03 UTC

[geode] branch GEODE-9892-Create-Infrastructure-for-Redis-Lists updated (e69df30 -> eecdd5f)

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 e69df30  Simplify SizeableByteArrayList sizing calculation
 discard a775737  Special-case LPOP testing until 6.2+ implemented
 discard 5e3af9a  Try to avoid merge error
 discard ae5ea42  Add initial support for RedisLists - implements LPUSH, LPOP, LLEN
     add da60432  GEODE-9835: Add SSCAN to Redis supported commands (#7278)
     add c0eb58e  GEODE-9993: Make SMOVE transactional (#7321)
     add dcba954  GEODE-10011: Do not perform second scan if first scanned entire map (#7333)
     add eecdd5f  Add initial support for RedisLists - implements LPUSH, LPOP, LLEN

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   (e69df30)
            \
             N -- N -- N   refs/heads/GEODE-9892-Create-Infrastructure-for-Redis-Lists (eecdd5f)

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:
 .../server/AbstractHitsMissesIntegrationTest.java  |  10 +-
 .../executor/set/AbstractSScanIntegrationTest.java | 466 +++++++++++++--------
 .../executor/set/SScanIntegrationTest.java         |  50 ++-
 .../apache/geode/codeAnalysis/excludedClasses.txt  |   3 +-
 .../redis/internal/commands/RedisCommandType.java  |   4 +-
 .../commands/executor/set/SMoveExecutor.java       |   2 +-
 .../commands/executor/set/SScanExecutor.java       |  94 +----
 .../redis/internal/data/AbstractRedisData.java     |  18 +-
 .../apache/geode/redis/internal/data/RedisSet.java |  99 ++---
 .../SizeableObjectOpenCustomHashSet.java           |  81 ----
 ...SizeableObjectOpenCustomHashSetWithCursor.java} | 156 ++++---
 .../redis/internal/data/delta/AddByteArrays.java   |   9 +
 .../internal/netty/ExecutionHandlerContext.java    |  10 -
 .../geode/redis/internal/data/RedisHashTest.java   |  19 +-
 .../geode/redis/internal/data/RedisSetTest.java    |  80 +++-
 .../redis/internal/data/RedisSortedSetTest.java    |  37 +-
 .../internal/data/RedisStringQuickCheckTest.java   |   3 +-
 .../geode/redis/internal/data/RedisStringTest.java |  53 +--
 ...tOpenCustomHashMapWithCursorQuickCheckTest.java |   6 +-
 ...ytes2ObjectOpenCustomHashMapWithCursorTest.java |  10 +-
 .../SizeableObjectOpenCustomHashSetTest.java       |  62 ---
 ...eableObjectOpenCustomHashSetWithCursorTest.java | 284 +++++++++++++
 22 files changed, 908 insertions(+), 648 deletions(-)
 delete mode 100644 geode-for-redis/src/main/java/org/apache/geode/redis/internal/data/collections/SizeableObjectOpenCustomHashSet.java
 copy geode-for-redis/src/main/java/org/apache/geode/redis/internal/data/collections/{SizeableBytes2ObjectOpenCustomHashMapWithCursor.java => SizeableObjectOpenCustomHashSetWithCursor.java} (58%)
 delete mode 100644 geode-for-redis/src/test/java/org/apache/geode/redis/internal/data/collections/SizeableObjectOpenCustomHashSetTest.java
 create mode 100644 geode-for-redis/src/test/java/org/apache/geode/redis/internal/data/collections/SizeableObjectOpenCustomHashSetWithCursorTest.java