zrevrange(
name: KeyT,
start: int,
end: int,
withscores: bool = False,
score_cast_func: Union[type, Callable] = float
) → ResponseT
No method signature available for this client.
zrevrange(
key: String,
start: long,
stop: long
) → List<String>
zrevrange(
key: K, // the key.
start: long, // the start.
stop: long // the stop.
) → List<V> // Long count of elements in the specified range.
zrevrange(
channel: ValueStreamingChannel<V>, // streaming channel that receives a call for every scored value.
key: K, // the key.
start: long, // the start.
stop: long // the stop.
) → Long // Long count of elements in the specified range.
zrevrange(
key: K, // the key.
start: long, // the start.
stop: long // the stop.
) → RedisFuture<List<V>> // Long count of elements in the specified range.
zrevrange(
channel: ValueStreamingChannel<V>, // streaming channel that receives a call for every scored value.
key: K, // the key.
start: long, // the start.
stop: long // the stop.
) → RedisFuture<Long> // Long count of elements in the specified range.
zrevrange(
key: K, // the key.
start: long, // the start.
stop: long // the stop.
) → Flux<V> // Long count of elements in the specified range. @deprecated since 6.0 in favor of consuming large results through the org.reactivestreams.Publisher returned by #zrevrange.
zrevrange(
channel: ValueStreamingChannel<V>, // streaming channel that receives a call for every scored value.
key: K, // the key.
start: long, // the start.
stop: long // the stop.
) → Mono<Long> // Long count of elements in the specified range. @deprecated since 6.0 in favor of consuming large results through the org.reactivestreams.Publisher returned by #zrevrange.
ZRevRange(
ctx: context.Context,
key: string,
start: Any,
stop: int64
) → *StringSliceCmd
SortedSetRangeByRank(
key: RedisKey, // The key of the sorted set.
start: long, // The start index to get.
stop: long, // The stop index to get.
order: Order, // The order to sort by (defaults to ascending).
flags: CommandFlags // The flags to use for this operation.
) → RedisValue[] // List of elements in the specified range.
SortedSetRangeByRank(
key: RedisKey, // The key of the sorted set.
start: long, // The start index to get.
stop: long, // The stop index to get.
order: Order, // The order to sort by (defaults to ascending).
flags: CommandFlags // The flags to use for this operation.
) → RedisValue[] // List of elements in the specified range.
SortedSetRangeByRank(
key: RedisKey, // The key of the sorted set.
start: long, // The start index to get.
stop: long, // The stop index to get.
order: Order, // The order to sort by (defaults to ascending).
flags: CommandFlags // The flags to use for this operation.
) → RedisValue[] // List of elements in the specified range.
SortedSetRangeByRank(
key: RedisKey, // The key of the sorted set.
start: long, // The start index to get.
stop: long, // The stop index to get.
order: Order, // The order to sort by (defaults to ascending).
flags: CommandFlags // The flags to use for this operation.
) → RedisValue[] // List of elements in the specified range.
zrevrange(
$key: string,
$start: int|string,
$stop: int|string,
?array $options = null: Any
) → array
zrevrange(
key: K,
start: isize,
stop: isize
) → (Vec<String>)
zrevrange_withscores(
key: K,
start: isize,
stop: isize
) → (Vec<String>)
zrevrange(
key: K,
start: isize,
stop: isize
) → (Vec<String>)
zrevrange_withscores(
key: K,
start: isize,
stop: isize
) → (Vec<String>)