geodist(
name: KeyT,
place1: FieldT,
place2: FieldT,
unit: Optional[str] = None
) → ResponseT
GEODIST(
key: RedisArgument,
member1: RedisArgument,
member2: RedisArgument,
unit?: GeoUnits
) → Any
geodist(
key: byte[],
member1: byte[],
member2: byte[]
) → Double // The distance as a double
geodist(
key: byte[],
member1: byte[],
unit: byte[] member2 final GeoUnit // can be M, KM, MI or FT can M, KM, MI or FT
) → Double // The distance as a double
geodist(
key: String,
member1: String,
member2: String
) → Double // The distance as a double
geodist(
key: String,
member1: String,
unit: String member2 final GeoUnit // can be M, KM, MI or FT can M, KM, MI or FT
) → Double // The distance as a double
geodist(
key: String,
member1: String,
member2: String
) → Double // The distance as a double
geodist(
key: K, // the key of the geo set.
from: V, // from member.
to: V, // to member.
unit: GeoArgs.Unit // distance unit.
) → Double // distance between points from and to. If one or more elements are missing null is returned.
geodist(
key: K, // the key of the geo set.
from: V, // from member.
to: V, // to member.
unit: GeoArgs.Unit // distance unit.
) → RedisFuture<Double> // distance between points from and to. If one or more elements are missing null is returned.
geodist(
key: K, // the key of the geo set.
from: V, // from member.
to: V, // to member.
unit: GeoArgs.Unit // distance unit.
) → Mono<Double> // distance between points from and to. If one or more elements are missing null is returned.
GeoDist(
ctx: context.Context,
key: string,
member1: Any,
member2: Any,
unit: string
) → *FloatCmd
GeoDistance(
key: RedisKey, // The key of the set.
member1: RedisValue, // The first member to check.
member2: RedisValue, // The second member to check.
unit: GeoUnit, // The unit of distance to return (defaults to meters).
flags: CommandFlags // The flags to use for this operation.
) → double? // The command returns the distance as a double (represented as a string) in the specified unit, or null if one or both the elements are missing.
GeoDistanceAsync(
key: RedisKey,
member1: RedisValue,
member2: RedisValue,
unit: GeoUnit,
flags: CommandFlags
) → Task<double?>
GeoDistance(
key: RedisKey, // The key of the set.
member1: RedisValue, // The first member to check.
member2: RedisValue, // The second member to check.
unit: GeoUnit, // The unit of distance to return (defaults to meters).
flags: CommandFlags // The flags to use for this operation.
) → double? // The command returns the distance as a double (represented as a string) in the specified unit, or null if one or both the elements are missing.
GeoDistanceAsync(
key: RedisKey,
value0: RedisValue,
value1: RedisValue,
unit: GeoUnit,
flags: CommandFlags
) → Task<double?>
GeoDistanceAsync(
key: RedisKey,
member1: RedisValue,
member2: RedisValue,
unit: GeoUnit,
flags: CommandFlags
) → Task<double?>
GeoDistance(
key: RedisKey, // The key of the set.
member1: RedisValue, // The first member to check.
member2: RedisValue, // The second member to check.
unit: GeoUnit, // The unit of distance to return (defaults to meters).
flags: CommandFlags // The flags to use for this operation.
) → double? // The command returns the distance as a double (represented as a string) in the specified unit, or null if one or both the elements are missing.
GeoDistance(
key: RedisKey, // The key of the set.
member1: RedisValue, // The first member to check.
member2: RedisValue, // The second member to check.
unit: GeoUnit, // The unit of distance to return (defaults to meters).
flags: CommandFlags // The flags to use for this operation.
) → double? // The command returns the distance as a double (represented as a string) in the specified unit, or null if one or both the elements are missing.
GeoDistanceAsync(
key: RedisKey,
value0: RedisValue,
value1: RedisValue,
unit: GeoUnit,
flags: CommandFlags
) → Task<double?>
geodist(
$key: string,
$member1: Any,
$member2: Any,
$unit = null: Any
) → string|null
geo_dist(
key: K,
member1: M1,
member2: M2,
unit: geo
) → (Option<f64>)
geo_dist(
key: K,
member1: M1,
member2: M2,
unit: geo
) → (Option<f64>)