sinter(
keys: List,
*args: List
) → Union[Awaitable[list], list]
SINTER(
keys: RedisVariadicArgument
) → Any
sinter(
keys: String...
) → Set<String> // A set with members of the resulting set
sinter(
keys: K... // the keys.
) → Set<V> // Long count of members of the resulting set.
sinter(
channel: ValueStreamingChannel<V>, // the channel.
keys: K... // the keys.
) → Long // Long count of members of the resulting set.
sinter(
keys: K... // the keys.
) → RedisFuture<Set<V>> // Long count of members of the resulting set.
sinter(
channel: ValueStreamingChannel<V>, // the channel.
keys: K... // the keys.
) → RedisFuture<Long> // Long count of members of the resulting set.
sinter(
keys: K... // the keys.
) → Flux<V> // Long count of members of the resulting set. @deprecated since 6.0 in favor of consuming large results through the org.reactivestreams.Publisher returned by #sinter.
sinter(
channel: ValueStreamingChannel<V>, // the channel.
keys: K... // the keys.
) → Mono<Long> // Long count of members of the resulting set. @deprecated since 6.0 in favor of consuming large results through the org.reactivestreams.Publisher returned by #sinter.
SInter(
ctx: context.Context,
keys: ...string
) → *StringSliceCmd
SetCombine(
operation: SetOperation, // The operation to perform.
first: RedisKey,
second: RedisKey,
flags: CommandFlags // The flags to use for this operation.
) → RedisValue[] // List with members of the resulting set.
SetCombine(
operation: SetOperation, // The operation to perform.
keys: RedisKey[], // The keys of the sets to operate on.
flags: CommandFlags // The flags to use for this operation.
) → RedisValue[] // List with members of the resulting set.
SetCombine(
operation: SetOperation, // The operation to perform.
first: RedisKey,
second: RedisKey,
flags: CommandFlags // The flags to use for this operation.
) → RedisValue[] // List with members of the resulting set.
SetCombine(
operation: SetOperation, // The operation to perform.
keys: RedisKey[], // The keys of the sets to operate on.
flags: CommandFlags // The flags to use for this operation.
) → RedisValue[] // List with members of the resulting set.
SetCombine(
operation: SetOperation, // The operation to perform.
first: RedisKey,
second: RedisKey,
flags: CommandFlags // The flags to use for this operation.
) → RedisValue[] // List with members of the resulting set.
SetCombine(
operation: SetOperation, // The operation to perform.
keys: RedisKey[], // The keys of the sets to operate on.
flags: CommandFlags // The flags to use for this operation.
) → RedisValue[] // List with members of the resulting set.
SetCombine(
operation: SetOperation, // The operation to perform.
first: RedisKey,
second: RedisKey,
flags: CommandFlags // The flags to use for this operation.
) → RedisValue[] // List with members of the resulting set.
SetCombine(
operation: SetOperation, // The operation to perform.
keys: RedisKey[], // The keys of the sets to operate on.
flags: CommandFlags // The flags to use for this operation.
) → RedisValue[] // List with members of the resulting set.
sinter(
$keys: array|string
) → string[]
sinter(
keys: K
) → (HashSet<String>)
sinter(
keys: K
) → (HashSet<String>)