congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
RedisZSetCommands$Limit.unlimited
Code IndexAdd Tabnine to your IDE (free)

How to use
unlimited
method
in
org.springframework.data.redis.connection.RedisZSetCommands$Limit

Best Java code snippets using org.springframework.data.redis.connection.RedisZSetCommands$Limit.unlimited (Showing top 20 results out of 315)

origin: spring-projects/spring-data-redis

/**
 * Creates a new {@link ZRangeByLexCommand} given a {@link Range} of {@link String} to retrieve elements
 * lexicographical ordering.
 *
 * @param range must not be {@literal null}.
 * @return a new {@link ZRangeByLexCommand} for {@link Tuple}.
 */
public static ZRangeByLexCommand stringsWithin(Range<String> range) {
  Assert.notNull(range, "Range must not be null!");
  return new ZRangeByLexCommand(null, range, Direction.ASC, Limit.unlimited());
}
origin: spring-projects/spring-data-redis

/**
 * Creates a new {@link ZRangeByLexCommand} given a {@link Range} of {@link String} to obtain elements in reverse
 * lexicographical ordering.
 *
 * @param range must not be {@literal null}.
 * @return a new {@link ZRangeByLexCommand} for {@link Tuple}.
 */
public static ZRangeByLexCommand reverseStringsWithin(Range<String> range) {
  Assert.notNull(range, "Range must not be null!");
  return new ZRangeByLexCommand(null, range, Direction.DESC, Limit.unlimited());
}
origin: spring-projects/spring-data-redis

/**
 * Read records from a stream within a specific {@link Range} in reverse order.
 *
 * @param range must not be {@literal null}.
 * @return list with members of the resulting stream. {@literal null} when used in pipeline / transaction.
 * @see <a href="http://redis.io/commands/xrevrange">Redis Documentation: XREVRANGE</a>
 */
@Nullable
default List<MapRecord<K, HK, HV>> reverseRange(Range<String> range) {
  return reverseRange(range, Limit.unlimited());
}
origin: spring-projects/spring-data-redis

/**
 * Read records from a stream within a specific {@link Range} in reverse order.
 *
 * @param key the stream key.
 * @param range must not be {@literal null}.
 * @return the {@link Flux} emitting records one by one.
 * @see <a href="http://redis.io/commands/xrevrange">Redis Documentation: XREVRANGE</a>
 */
default Flux<MapRecord<K, HK, HV>> reverseRange(K key, Range<String> range) {
  return reverseRange(key, range, Limit.unlimited());
}
origin: spring-projects/spring-data-redis

/**
 * Get all elements in {@link Range} from the sorted set at {@literal key} in lexicographical ordering.
 *
 * @param key must not be {@literal null}.
 * @param range must not be {@literal null}.
 * @return
 * @see <a href="http://redis.io/commands/zrevrangebylex">Redis Documentation: ZREVRANGEBYLEX</a>
 */
default Flux<ByteBuffer> zRevRangeByLex(ByteBuffer key, Range<String> range) {
  return zRevRangeByLex(key, range, Limit.unlimited());
}
origin: spring-projects/spring-data-redis

/**
 * Read records from a stream within a specific {@link Range} in reverse order as {@link ObjectRecord}.
 *
 * @param targetType the target type of the payload.
 * @param key the stream key.
 * @param range must not be {@literal null}.
 * @return list with members of the resulting stream. {@literal null} when used in pipeline / transaction.
 * @see <a href="http://redis.io/commands/xrevrange">Redis Documentation: XREVRANGE</a>
 */
default <V> List<ObjectRecord<K, V>> reverseRange(Class<V> targetType, K key, Range<String> range) {
  return reverseRange(targetType, key, range, Limit.unlimited());
}
origin: spring-projects/spring-data-redis

/**
 * Read records from a stream within a specific {@link Range}.
 *
 * @param range must not be {@literal null}.
 * @return list with members of the resulting stream. {@literal null} when used in pipeline / transaction.
 * @see <a href="http://redis.io/commands/xrange">Redis Documentation: XRANGE</a>
 */
@Nullable
default List<MapRecord<K, HK, HV>> range(Range<String> range) {
  return range(range, Limit.unlimited());
}
origin: spring-projects/spring-data-redis

/**
 * Get elements where score is between {@code Range#min} and {@code Range#max} from sorted set.
 *
 * @param key must not be {@literal null}.
 * @param range must not be {@literal null}.
 * @return {@literal null} when used in pipeline / transaction.
 * @since 1.6
 * @see <a href="http://redis.io/commands/zrangebyscore">Redis Documentation: ZRANGEBYSCORE</a>
 */
@Nullable
default Set<byte[]> zRangeByScore(byte[] key, Range range) {
  return zRangeByScore(key, range, Limit.unlimited());
}
origin: spring-projects/spring-data-redis

/**
 * Applies a {@code Limit}. Constructs a new command instance with all previously configured properties.
 *
 * @param count
 * @return a new {@link RangeCommand} with {@code limit} applied.
 */
public RangeCommand limit(int count) {
  return new RangeCommand(getKey(), range, Limit.unlimited().count(count));
}
origin: spring-projects/spring-data-redis

/**
 * Read records from a stream within a specific {@link Range} in reverse order.
 *
 * @param key the stream key.
 * @param range must not be {@literal null}.
 * @return list with members of the resulting stream. {@literal null} when used in pipeline / transaction.
 * @see <a href="http://redis.io/commands/xrevrange">Redis Documentation: XREVRANGE</a>
 */
@Nullable
default List<MapRecord<K, HK, HV>> reverseRange(K key, Range<String> range) {
  return reverseRange(key, range, Limit.unlimited());
}
origin: spring-projects/spring-data-redis

/**
 * Read all records from a stream within a specific {@link Range} as {@link ObjectRecord}.
 *
 * @param targetType the target type of the payload.
 * @param key the stream key.
 * @param range must not be {@literal null}.
 * @return list with members of the resulting stream. {@literal null} when used in pipeline / transaction.
 * @see <a href="http://redis.io/commands/xrange">Redis Documentation: XRANGE</a>
 */
default <V> List<ObjectRecord<K, V>> range(Class<V> targetType, K key, Range<String> range) {
  return range(targetType, key, range, Limit.unlimited());
}
origin: spring-projects/spring-data-redis

/**
 * Read records from a stream within a specific {@link Range}.
 *
 * @param key the stream key.
 * @param range must not be {@literal null}.
 * @return list with members of the resulting stream. {@literal null} when used in pipeline / transaction.
 * @see <a href="http://redis.io/commands/xrange">Redis Documentation: XRANGE</a>
 */
@Nullable
default List<MapRecord<K, HK, HV>> range(K key, Range<String> range) {
  return range(key, range, Limit.unlimited());
}
origin: spring-projects/spring-data-redis

/**
 * Read all records from a stream within a specific {@link Range}.
 *
 * @param targetType the target type of the payload.
 * @param key the stream key.
 * @param range must not be {@literal null}.
 * @return the {@link Flux} emitting records one by one.
 * @see <a href="http://redis.io/commands/xrange">Redis Documentation: XRANGE</a>
 */
default <V> Flux<ObjectRecord<K, V>> range(Class<V> targetType, K key, Range<String> range) {
  return range(targetType, key, range, Limit.unlimited());
}
origin: spring-projects/spring-data-redis

/**
 * Read records from a stream within a specific {@link Range}.
 *
 * @param key the stream key.
 * @param range must not be {@literal null}.
 * @return the {@link Flux} emitting records one by one.
 * @see <a href="http://redis.io/commands/xrange">Redis Documentation: XRANGE</a>
 */
default Flux<MapRecord<K, HK, HV>> range(K key, Range<String> range) {
  return range(key, range, Limit.unlimited());
}
origin: spring-projects/spring-data-redis

/**
 * Get all elements in {@link Range} from the sorted set at {@literal key} in lexicographical ordering.
 *
 * @param key must not be {@literal null}.
 * @param range must not be {@literal null}.
 * @return
 * @see <a href="http://redis.io/commands/zrangebylex">Redis Documentation: ZRANGEBYLEX</a>
 */
default Flux<ByteBuffer> zRangeByLex(ByteBuffer key, Range<String> range) {
  return zRangeByLex(key, range, Limit.unlimited());
}
origin: spring-projects/spring-data-redis

/**
 * Read records from a stream within a specific {@link Range}.
 *
 * @param key the stream key.
 * @param range must not be {@literal null}.
 * @return {@link Flux} emitting with members of the stream.
 * @see <a href="http://redis.io/commands/xrange">Redis Documentation: XRANGE</a>
 */
default Flux<ByteBufferRecord> xRange(ByteBuffer key, Range<String> range) {
  return xRange(key, range, Limit.unlimited());
}
origin: spring-projects/spring-data-redis

/**
 * Creates a new {@link RangeCommand} given a {@code key}.
 *
 * @param key must not be {@literal null}.
 * @return a new {@link RangeCommand} for {@code key}.
 */
public static RangeCommand stream(ByteBuffer key) {
  return new RangeCommand(key, Range.unbounded(), Limit.unlimited());
}
origin: spring-projects/spring-data-redis

/**
 * Read records from a stream within a specific {@link Range} in reverse order.
 *
 * @param key the stream key.
 * @param range must not be {@literal null}.
 * @return list with members of the resulting stream. {@literal null} when used in pipeline / transaction.
 * @see <a href="http://redis.io/commands/xrevrange">Redis Documentation: XREVRANGE</a>
 */
@Nullable
default List<ByteRecord> xRevRange(byte[] key, Range<String> range) {
  return xRevRange(key, range, Limit.unlimited());
}
origin: spring-projects/spring-data-redis

/**
 * Read records from a stream within a specific {@link Range} in reverse order.
 *
 * @param key the stream key.
 * @param range must not be {@literal null}.
 * @return {@link Flux} emitting the members of the stream in reverse.
 * @see <a href="http://redis.io/commands/xrevrange">Redis Documentation: XREVRANGE</a>
 */
default Flux<ByteBufferRecord> xRevRange(ByteBuffer key, Range<String> range) {
  return xRevRange(key, range, Limit.unlimited());
}
origin: spring-projects/spring-data-redis

/**
 * Read records from a stream within a specific {@link Range} in reverse order as {@link ObjectRecord}.
 *
 * @param targetType the target type of the payload.
 * @param key the stream key.
 * @param range must not be {@literal null}.
 * @return the {@link Flux} emitting records one by one.
 * @see <a href="http://redis.io/commands/xrevrange">Redis Documentation: XREVRANGE</a>
 */
default <V> Flux<ObjectRecord<K, V>> reverseRange(Class<V> targetType, K key, Range<String> range) {
  return reverseRange(targetType, key, range, Limit.unlimited());
}
org.springframework.data.redis.connectionRedisZSetCommands$Limitunlimited

Popular methods of RedisZSetCommands$Limit

  • <init>
  • count
  • getCount
  • getOffset
  • offset
  • isUnlimited

Popular in Java

  • Reading from database using SQL prepared statement
  • onCreateOptionsMenu (Activity)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • getExternalFilesDir (Context)
  • Time (java.sql)
    Java representation of an SQL TIME value. Provides utilities to format and parse the time's represen
  • Format (java.text)
    The base class for all formats. This is an abstract base class which specifies the protocol for clas
  • StringTokenizer (java.util)
    Breaks a string into tokens; new code should probably use String#split.> // Legacy code: StringTo
  • UUID (java.util)
    UUID is an immutable representation of a 128-bit universally unique identifier (UUID). There are mul
  • DataSource (javax.sql)
    An interface for the creation of Connection objects which represent a connection to a database. This
  • SAXParseException (org.xml.sax)
    Encapsulate an XML parse error or warning.> This module, both source code and documentation, is in t
  • Top plugins for WebStorm
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now