geoadd(
name: KeyT,
values: Sequence[EncodableT],
nx: bool = False,
xx: bool = False,
ch: bool = False
) → ResponseT
GEOADD(
key: RedisArgument,
toAdd: GeoMember | Array<GeoMember>,
options?: GeoAddOptions
) → Any
geoadd(
key: byte[],
longitude: double,
member: double latitude final byte[]
) → long // The number of elements added
geoadd(
key: byte[],
memberCoordinateMap: Map<byte[], GeoCoordinate> // Members names with their geo coordinates
) → long // The number of elements added
geoadd(
key: byte[],
params: GeoAddParams, // Additional options
memberCoordinateMap: Map<byte[], GeoCoordinate> // Members names with their geo coordinates
) → long // The number of elements added
geoadd(
key: String,
longitude: double,
member: double latitude final String
) → long // The number of elements added
geoadd(
key: String,
memberCoordinateMap: Map<String, GeoCoordinate> // Members names with their geo coordinates
) → long // The number of elements added
geoadd(
key: K, // the key of the geo set.
longitude: double,
latitude: double,
member: V
) → Long // Long integer-reply the number of elements that were added to the set. @since 6.1
geoadd(
key: K, // the key of the geo set.
longitude: double,
latitude: double,
member: V,
args: GeoAddArgs // additional arguments.
) → Long // Long integer-reply the number of elements that were added to the set. @since 6.1
geoadd(
key: K, // the key of the geo set.
lngLatMember: Object...
) → Long // Long integer-reply the number of elements that were added to the set. @since 6.1
geoadd(
key: K, // the key of the geo set.
values: GeoValue<V>... // io.lettuce.core.GeoValue values to add.
) → Long // Long integer-reply the number of elements that were added to the set. @since 6.1
geoadd(
key: K, // the key of the geo set.
args: GeoAddArgs, // additional arguments.
lngLatMember: Object...
) → Long // Long integer-reply the number of elements that were added to the set. @since 6.1
geoadd(
key: K, // the key of the geo set.
longitude: double,
latitude: double,
member: V
) → RedisFuture<Long> // Long integer-reply the number of elements that were added to the set. @since 6.1
geoadd(
key: K, // the key of the geo set.
longitude: double,
latitude: double,
member: V,
args: GeoAddArgs // additional arguments.
) → RedisFuture<Long> // Long integer-reply the number of elements that were added to the set. @since 6.1
geoadd(
key: K, // the key of the geo set.
lngLatMember: Object...
) → RedisFuture<Long> // Long integer-reply the number of elements that were added to the set. @since 6.1
geoadd(
key: K, // the key of the geo set.
values: GeoValue<V>... // io.lettuce.core.GeoValue values to add.
) → RedisFuture<Long> // Long integer-reply the number of elements that were added to the set. @since 6.1
geoadd(
key: K, // the key of the geo set.
args: GeoAddArgs, // additional arguments.
lngLatMember: Object...
) → RedisFuture<Long> // Long integer-reply the number of elements that were added to the set. @since 6.1
geoadd(
key: K, // the key of the geo set.
longitude: double,
latitude: double,
member: V
) → Mono<Long> // Long integer-reply the number of elements that were added to the set. @since 6.1
geoadd(
key: K, // the key of the geo set.
longitude: double,
latitude: double,
member: V,
args: GeoAddArgs // additional arguments.
) → Mono<Long> // Long integer-reply the number of elements that were added to the set. @since 6.1
geoadd(
key: K, // the key of the geo set.
lngLatMember: Object...
) → Mono<Long> // Long integer-reply the number of elements that were added to the set. @since 6.1
geoadd(
key: K, // the key of the geo set.
values: GeoValue<V>... // io.lettuce.core.GeoValue values to add.
) → Mono<Long> // Long integer-reply the number of elements that were added to the set. @since 6.1
geoadd(
key: K, // the key of the geo set.
args: GeoAddArgs, // additional arguments.
lngLatMember: Object...
) → Mono<Long> // Long integer-reply the number of elements that were added to the set. @since 6.1
GeoAdd(
ctx: context.Context,
key: string,
geoLocation: ...*GeoLocation
) → *IntCmd
GeoAdd(
key: RedisKey, // The key of the set.
longitude: double,
latitude: double,
member: RedisValue,
flags: CommandFlags // The flags to use for this operation.
) → bool // The number of elements that were added to the set, not including all the elements already present into the set.
GeoAdd(
key: RedisKey, // The key of the set.
value: GeoEntry,
flags: CommandFlags // The flags to use for this operation.
) → bool // The number of elements that were added to the set, not including all the elements already present into the set.
GeoAdd(
key: RedisKey, // The key of the set.
values: GeoEntry[], // The geo values add to the set.
flags: CommandFlags // The flags to use for this operation.
) → long // The number of elements that were added to the set, not including all the elements already present into the set.
GeoAdd(
key: RedisKey, // The key of the set.
longitude: double,
latitude: double,
member: RedisValue,
flags: CommandFlags // The flags to use for this operation.
) → bool // The number of elements that were added to the set, not including all the elements already present into the set.
GeoAdd(
key: RedisKey, // The key of the set.
value: GeoEntry,
flags: CommandFlags // The flags to use for this operation.
) → bool // The number of elements that were added to the set, not including all the elements already present into the set.
GeoAdd(
key: RedisKey, // The key of the set.
longitude: double,
latitude: double,
member: RedisValue,
flags: CommandFlags // The flags to use for this operation.
) → bool // The number of elements that were added to the set, not including all the elements already present into the set.
GeoAdd(
key: RedisKey, // The key of the set.
value: GeoEntry,
flags: CommandFlags // The flags to use for this operation.
) → bool // The number of elements that were added to the set, not including all the elements already present into the set.
GeoAdd(
key: RedisKey, // The key of the set.
values: GeoEntry[], // The geo values add to the set.
flags: CommandFlags // The flags to use for this operation.
) → long // The number of elements that were added to the set, not including all the elements already present into the set.
GeoAdd(
key: RedisKey, // The key of the set.
longitude: double,
latitude: double,
member: RedisValue,
flags: CommandFlags // The flags to use for this operation.
) → bool // The number of elements that were added to the set, not including all the elements already present into the set.
GeoAdd(
key: RedisKey, // The key of the set.
value: GeoEntry,
flags: CommandFlags // The flags to use for this operation.
) → bool // The number of elements that were added to the set, not including all the elements already present into the set.
geoadd(
$key: string,
$longitude: Any,
$latitude: Any,
$member: Any
) → int
geo_add(
key: K,
members: M
) → (usize)
geo_add(
key: K,
members: M
) → (usize)