geohash(
name: KeyT,
*values: FieldT
) → ResponseT
GEOHASH(
key: RedisArgument,
member: RedisVariadicArgument
) → Any
geohash(
key: String,
members: String...
) → List<String> // A list of Geohash strings corresponding to each member name passed as argument to the command.
geohash(
key: String,
members: String...
) → List<String> // A list of Geohash strings corresponding to each member name passed as argument to the command.
geohash(
key: K, // the key of the geo set.
members: V... // the members.
) → List<Value<String>> // bulk reply Geohash strings in the order of members. Returns null if a member is not found.
geohash(
key: K, // the key of the geo set.
members: V... // the members.
) → RedisFuture<List<Value<String>>> // bulk reply Geohash strings in the order of members. Returns null if a member is not found.
geohash(
key: K, // the key of the geo set.
members: V... // the members.
) → Flux<Value<String>> // bulk reply Geohash strings in the order of members. Returns null if a member is not found.
GeoHash(
ctx: context.Context,
key: string,
members: ...string
) → *StringSliceCmd
GeoHash(
key: RedisKey, // The key of the set.
members: RedisValue[],
flags: CommandFlags // The flags to use for this operation.
) → string?[] // The command returns an array where each element is the Geohash corresponding to each member name passed as argument to the command.
GeoHash(
key: RedisKey, // The key of the set.
member: RedisValue, // The member to get.
flags: CommandFlags // The flags to use for this operation.
) → string? // The command returns an array where each element is the Geohash corresponding to each member name passed as argument to the command.
GeoHashAsync(
key: RedisKey,
member: RedisValue,
flags: CommandFlags
) → Task<string?>
GeoHash(
key: RedisKey, // The key of the set.
members: RedisValue[],
flags: CommandFlags // The flags to use for this operation.
) → string?[] // The command returns an array where each element is the Geohash corresponding to each member name passed as argument to the command.
GeoHash(
key: RedisKey, // The key of the set.
member: RedisValue, // The member to get.
flags: CommandFlags // The flags to use for this operation.
) → string? // The command returns an array where each element is the Geohash corresponding to each member name passed as argument to the command.
GeoHashAsync(
key: RedisKey,
member: RedisValue,
flags: CommandFlags
) → Task<string?>
GeoHash(
key: RedisKey, // The key of the set.
members: RedisValue[],
flags: CommandFlags // The flags to use for this operation.
) → string?[] // The command returns an array where each element is the Geohash corresponding to each member name passed as argument to the command.
GeoHash(
key: RedisKey, // The key of the set.
member: RedisValue, // The member to get.
flags: CommandFlags // The flags to use for this operation.
) → string? // The command returns an array where each element is the Geohash corresponding to each member name passed as argument to the command.
GeoHash(
key: RedisKey, // The key of the set.
members: RedisValue[],
flags: CommandFlags // The flags to use for this operation.
) → string?[] // The command returns an array where each element is the Geohash corresponding to each member name passed as argument to the command.
GeoHash(
key: RedisKey, // The key of the set.
member: RedisValue, // The member to get.
flags: CommandFlags // The flags to use for this operation.
) → string? // The command returns an array where each element is the Geohash corresponding to each member name passed as argument to the command.
geohash(
$key: string,
$members: array
) → array
geo_hash(
key: K,
members: M
) → (Vec<String>)
geo_hash(
key: K,
members: M
) → (Vec<String>)