You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by do...@apache.org on 2022/02/01 17:32:30 UTC

[geode] branch develop updated (00ccce2 -> da60432)

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

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


    from 00ccce2  GEODE-9995: Use ephemeral ports to avoid port in use issues (#7329)
     add da60432  GEODE-9835: Add SSCAN to Redis supported commands (#7278)

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  |   2 +-
 .../redis/internal/commands/RedisCommandType.java  |   4 +-
 .../commands/executor/set/SScanExecutor.java       |  94 +----
 .../apache/geode/redis/internal/data/RedisSet.java |  51 +--
 .../SizeableObjectOpenCustomHashSet.java           |  81 ----
 ...SizeableObjectOpenCustomHashSetWithCursor.java} | 156 ++++---
 .../internal/netty/ExecutionHandlerContext.java    |  10 -
 ...ytes2ObjectOpenCustomHashMapWithCursorTest.java |  10 +-
 .../SizeableObjectOpenCustomHashSetTest.java       |  62 ---
 ...eableObjectOpenCustomHashSetWithCursorTest.java | 284 +++++++++++++
 13 files changed, 717 insertions(+), 563 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