@@ -310,8 +310,8 @@ default Long lexCount(org.springframework.data.redis.connection.RedisZSetCommand
310
310
}
311
311
312
312
/**
313
- * Count number of elements within sorted set with value between {@code Range#min } and {@code Range#max} applying
314
- * lexicographical ordering.
313
+ * Count number of elements within sorted set with value between {@link Range#getLowerBound() } and
314
+ * {@link Range#getUpperBound()} applying lexicographical ordering.
315
315
*
316
316
* @param range must not be {@literal null}.
317
317
* @return {@literal null} when used in pipeline / transaction.
@@ -836,8 +836,9 @@ default Set<TypedTuple<V>> unionWithScores(Collection<K> otherKeys, Aggregate ag
836
836
Cursor <TypedTuple <V >> scan (ScanOptions options );
837
837
838
838
/**
839
- * Get all elements with lexicographical ordering with a value between {@link Range#getLowerBound()} and
840
- * {@link Range#getUpperBound()}.
839
+ * Get all elements with lexicographical ordering with a value between
840
+ * {@link org.springframework.data.redis.connection.RedisZSetCommands.Range#getMin()} and
841
+ * {@link org.springframework.data.redis.connection.RedisZSetCommands.Range#getMax()}.
841
842
*
842
843
* @param range must not be {@literal null}.
843
844
* @return {@literal null} when used in pipeline / transaction.
@@ -867,8 +868,9 @@ default Set<V> rangeByLex(Range<String> range) {
867
868
868
869
/**
869
870
* Get all elements {@literal n} elements, where {@literal n = } {@link Limit#getCount()}, starting at
870
- * {@link Limit#getOffset()} with lexicographical ordering having a value between {@link Range#getLowerBound()} and
871
- * {@link Range#getUpperBound()}.
871
+ * {@link Limit#getOffset()} with lexicographical ordering from {@literal ZSET} at {@code key} with a value between
872
+ * {@link org.springframework.data.redis.connection.RedisZSetCommands.Range#getMin()} and
873
+ * {@link org.springframework.data.redis.connection.RedisZSetCommands.Range#getMax()}.
872
874
*
873
875
* @param range must not be {@literal null}.
874
876
* @param limit can be {@literal null}.
@@ -898,8 +900,9 @@ default Set<V> rangeByLex(org.springframework.data.redis.connection.RedisZSetCom
898
900
Set <V > rangeByLex (Range <String > range , Limit limit );
899
901
900
902
/**
901
- * Get all elements with reverse lexicographical ordering with a value between {@link Range#getLowerBound()} and
902
- * {@link Range#getUpperBound()}.
903
+ * Get all elements with reverse lexicographical ordering from {@literal ZSET} with a value between
904
+ * {@link org.springframework.data.redis.connection.RedisZSetCommands.Range#getMin()} and
905
+ * {@link org.springframework.data.redis.connection.RedisZSetCommands.Range#getMax()}.
903
906
*
904
907
* @param range must not be {@literal null}.
905
908
* @return {@literal null} when used in pipeline / transaction.
@@ -929,8 +932,9 @@ default Set<V> reverseRangeByLex(Range<String> range) {
929
932
930
933
/**
931
934
* Get all elements {@literal n} elements, where {@literal n = } {@link Limit#getCount()}, starting at
932
- * {@link Limit#getOffset()} with reverse lexicographical ordering having a value between
933
- * {@link Range#getLowerBound()} and {@link Range#getUpperBound()}.
935
+ * {@link Limit#getOffset()} with reverse lexicographical ordering from {@literal ZSET} having a value
936
+ * between {@link org.springframework.data.redis.connection.RedisZSetCommands.Range#getMin()} and
937
+ * {@link org.springframework.data.redis.connection.RedisZSetCommands.Range#getMax()}.
934
938
*
935
939
* @param range must not be {@literal null}.
936
940
* @param limit can be {@literal null}.
0 commit comments