zpopmin(
name: KeyT,
count: Optional[int] = None
) → ResponseT
ZPOPMIN(
key: RedisArgument
) → Any
zpopmin(
key: byte[]
) → Tuple // The scores
zpopmin(
key: byte[],
count: int
) → List<Tuple> // The scores
zpopmin(
key: String
) → Tuple // The scores
zpopmin(
key: String,
count: int
) → List<Tuple> // The scores
zpopmin(
key: K // the key.
) → ScoredValue<V> // List<ScoredValue<V>> array-reply list of popped scores and elements. @since 5.1
zpopmin(
key: K, // the key.
count: long // the number of elements to return.
) → List<ScoredValue<V>> // List<ScoredValue<V>> array-reply list of popped scores and elements. @since 5.1
zpopmin(
key: K // the key.
) → RedisFuture<ScoredValue<V>> // List<ScoredValue<V>> array-reply list of popped scores and elements. @since 5.1
zpopmin(
key: K, // the key.
count: long // the number of elements to return.
) → RedisFuture<List<ScoredValue<V>>> // List<ScoredValue<V>> array-reply list of popped scores and elements. @since 5.1
zpopmin(
key: K // the key.
) → Mono<ScoredValue<V>> // ScoredValue<V> array-reply list of popped scores and elements. @since 5.1
zpopmin(
key: K, // the key.
count: long // the number of elements to return.
) → Flux<ScoredValue<V>> // ScoredValue<V> array-reply list of popped scores and elements. @since 5.1
ZPopMin(
ctx: context.Context,
key: string,
count: ...int64
) → *ZSliceCmd
SortedSetPop(
key: RedisKey,
order: Order, // The order to sort by when popping items out of the set.
flags: CommandFlags // The flags to use for the operation.
) → SortedSetEntry? // A contiguous collection of sorted set entries with the key they were popped from, or Null if no non-empty sorted sets are found.
SortedSetPop(
key: RedisKey,
count: long, // The maximum number of records to pop out of the sorted set.
order: Order, // The order to sort by when popping items out of the set.
flags: CommandFlags // The flags to use for the operation.
) → SortedSetEntry[] // A contiguous collection of sorted set entries with the key they were popped from, or Null if no non-empty sorted sets are found.
SortedSetPop(
keys: RedisKey[], // The keys to check.
count: long, // The maximum number of records to pop out of the sorted set.
order: Order, // The order to sort by when popping items out of the set.
flags: CommandFlags // The flags to use for the operation.
) → SortedSetPopResult // A contiguous collection of sorted set entries with the key they were popped from, or Null if no non-empty sorted sets are found.
SortedSetPop(
key: RedisKey,
order: Order, // The order to sort by when popping items out of the set.
flags: CommandFlags // The flags to use for the operation.
) → SortedSetEntry? // A contiguous collection of sorted set entries with the key they were popped from, or Null if no non-empty sorted sets are found.
SortedSetPop(
key: RedisKey,
count: long, // The maximum number of records to pop out of the sorted set.
order: Order, // The order to sort by when popping items out of the set.
flags: CommandFlags // The flags to use for the operation.
) → SortedSetEntry[] // A contiguous collection of sorted set entries with the key they were popped from, or Null if no non-empty sorted sets are found.
SortedSetPop(
key: RedisKey,
order: Order, // The order to sort by when popping items out of the set.
flags: CommandFlags // The flags to use for the operation.
) → SortedSetEntry? // A contiguous collection of sorted set entries with the key they were popped from, or Null if no non-empty sorted sets are found.
SortedSetPop(
key: RedisKey,
count: long, // The maximum number of records to pop out of the sorted set.
order: Order, // The order to sort by when popping items out of the set.
flags: CommandFlags // The flags to use for the operation.
) → SortedSetEntry[] // A contiguous collection of sorted set entries with the key they were popped from, or Null if no non-empty sorted sets are found.
SortedSetPop(
keys: RedisKey[], // The keys to check.
count: long, // The maximum number of records to pop out of the sorted set.
order: Order, // The order to sort by when popping items out of the set.
flags: CommandFlags // The flags to use for the operation.
) → SortedSetPopResult // A contiguous collection of sorted set entries with the key they were popped from, or Null if no non-empty sorted sets are found.
SortedSetPop(
key: RedisKey,
order: Order, // The order to sort by when popping items out of the set.
flags: CommandFlags // The flags to use for the operation.
) → SortedSetEntry? // A contiguous collection of sorted set entries with the key they were popped from, or Null if no non-empty sorted sets are found.
SortedSetPop(
key: RedisKey,
count: long, // The maximum number of records to pop out of the sorted set.
order: Order, // The order to sort by when popping items out of the set.
flags: CommandFlags // The flags to use for the operation.
) → SortedSetEntry[] // A contiguous collection of sorted set entries with the key they were popped from, or Null if no non-empty sorted sets are found.
zpopmin(
$key: string,
int $count = 1: Any
) → array
zpopmin(
key: K,
count: isize
) → (Vec<String>)
zpopmin(
key: K,
count: isize
) → (Vec<String>)