Package | Description |
---|---|
org.springframework.data.redis.connection |
Connection package providing low-level abstractions for interacting with the various Redis 'drivers'/libraries.
|
org.springframework.data.redis.core |
Core package for integrating Redis with Spring concepts.
|
Modifier and Type | Method and Description |
---|---|
protected RedisGeoCommands.GeoSearchStoreCommandArgs |
RedisGeoCommands.GeoSearchStoreCommandArgs.clone() |
RedisGeoCommands.GeoSearchStoreCommandArgs |
RedisGeoCommands.GeoSearchStoreCommandArgs.limit(long count)
Limit the results to the first N matching items.
|
RedisGeoCommands.GeoSearchStoreCommandArgs |
RedisGeoCommands.GeoSearchStoreCommandArgs.limit(long count,
boolean any)
Limit the results to the first N matching items.
|
static RedisGeoCommands.GeoSearchStoreCommandArgs |
RedisGeoCommands.GeoSearchStoreCommandArgs.newGeoSearchStoreArgs()
Create new
RedisGeoCommands.GeoSearchStoreCommandArgs . |
RedisGeoCommands.GeoSearchStoreCommandArgs |
RedisGeoCommands.GeoSearchStoreCommandArgs.sort(Sort.Direction direction)
Apply a sort direction.
|
RedisGeoCommands.GeoSearchStoreCommandArgs |
RedisGeoCommands.GeoSearchStoreCommandArgs.sortAscending()
Sort returned items from the nearest to the furthest, relative to the center.
|
RedisGeoCommands.GeoSearchStoreCommandArgs |
RedisGeoCommands.GeoSearchStoreCommandArgs.sortDescending()
Sort returned items from the furthest to the nearest, relative to the center.
|
RedisGeoCommands.GeoSearchStoreCommandArgs |
RedisGeoCommands.GeoSearchStoreCommandArgs.storeDistance()
Sets the
RedisGeoCommands.GeoRadiusCommandArgs.Flag.STOREDIST flag to also store the distance of the returned items from the specified center. |
Modifier and Type | Method and Description |
---|---|
Optional<RedisGeoCommands.GeoSearchStoreCommandArgs> |
ReactiveGeoCommands.GeoSearchStoreCommand.getArgs() |
Modifier and Type | Method and Description |
---|---|
Long |
DefaultStringRedisConnection.geoSearchStore(byte[] destKey,
byte[] key,
GeoReference<byte[]> reference,
GeoShape predicate,
RedisGeoCommands.GeoSearchStoreCommandArgs args) |
default Long |
DefaultedRedisConnection.geoSearchStore(byte[] destKey,
byte[] key,
GeoReference<byte[]> reference,
GeoShape predicate,
RedisGeoCommands.GeoSearchStoreCommandArgs args)
Deprecated.
in favor of
RedisConnection.geoCommands() }. |
Long |
RedisGeoCommands.geoSearchStore(byte[] destKey,
byte[] key,
GeoReference<byte[]> reference,
GeoShape predicate,
RedisGeoCommands.GeoSearchStoreCommandArgs args)
Query the members of a geo set which are within the borders of the area specified by a given
shape
and store the result at destKey . |
default reactor.core.publisher.Mono<Long> |
ReactiveGeoCommands.geoSearchStore(ByteBuffer destKey,
ByteBuffer key,
GeoReference<ByteBuffer> reference,
GeoShape shape,
RedisGeoCommands.GeoSearchStoreCommandArgs args)
Query the members of a geo set which are within the borders of the area specified by a given
shape
and store the result at destKey . |
Long |
DefaultStringRedisConnection.geoSearchStore(String destKey,
String key,
GeoReference<String> reference,
GeoShape predicate,
RedisGeoCommands.GeoSearchStoreCommandArgs args) |
Long |
StringRedisConnection.geoSearchStore(String destKey,
String key,
GeoReference<String> reference,
GeoShape predicate,
RedisGeoCommands.GeoSearchStoreCommandArgs args)
Query the members of a geo set which are within the borders of the area specified by a given
shape
and store the result at destKey . |
ReactiveGeoCommands.GeoSearchStoreCommand |
ReactiveGeoCommands.GeoSearchStoreCommand.with(RedisGeoCommands.GeoSearchStoreCommandArgs args)
Sets the command args.
|
Modifier and Type | Method and Description |
---|---|
default Long |
BoundGeoOperations.searchAndStore(K destKey,
GeoReference<M> reference,
BoundingBox boundingBox,
RedisGeoCommands.GeoSearchStoreCommandArgs args)
Get the members using
GeoReference as center of the query within the boundaries of a given
bounding box applying RedisGeoCommands.GeoRadiusCommandArgs and store results at destKey . |
default Long |
BoundGeoOperations.searchAndStore(K destKey,
GeoReference<M> reference,
Distance radius,
RedisGeoCommands.GeoSearchStoreCommandArgs args)
Get the members using
GeoReference as center of the query within the boundaries of a given
radius applying RedisGeoCommands.GeoRadiusCommandArgs and store results at destKey . |
Long |
BoundGeoOperations.searchAndStore(K destKey,
GeoReference<M> reference,
GeoShape geoPredicate,
RedisGeoCommands.GeoSearchStoreCommandArgs args)
Get the members using
GeoReference as center of the query within the boundaries of a given
predicate applying RedisGeoCommands.GeoRadiusCommandArgs and store results at destKey . |
default Long |
GeoOperations.searchAndStore(K key,
K destKey,
GeoReference<M> reference,
BoundingBox boundingBox,
RedisGeoCommands.GeoSearchStoreCommandArgs args)
Get the members using
GeoReference as center of the query within the boundaries of a given
bounding box applying RedisGeoCommands.GeoRadiusCommandArgs and store results at destKey . |
default reactor.core.publisher.Mono<Long> |
ReactiveGeoOperations.searchAndStore(K key,
K destKey,
GeoReference<M> reference,
BoundingBox boundingBox,
RedisGeoCommands.GeoSearchStoreCommandArgs args)
Get the members using
GeoReference as center of the query within the boundaries of a given
bounding box applying RedisGeoCommands.GeoRadiusCommandArgs and store results at destKey . |
default Long |
GeoOperations.searchAndStore(K key,
K destKey,
GeoReference<M> reference,
Distance radius,
RedisGeoCommands.GeoSearchStoreCommandArgs args)
Get the members using
GeoReference as center of the query within the boundaries of a given
radius applying RedisGeoCommands.GeoRadiusCommandArgs and store results at destKey . |
default reactor.core.publisher.Mono<Long> |
ReactiveGeoOperations.searchAndStore(K key,
K destKey,
GeoReference<M> reference,
Distance radius,
RedisGeoCommands.GeoSearchStoreCommandArgs args)
Get the members using
GeoReference as center of the query within the boundaries of a given
radius applying RedisGeoCommands.GeoRadiusCommandArgs and store results at destKey . |
Long |
GeoOperations.searchAndStore(K key,
K destKey,
GeoReference<M> reference,
GeoShape geoPredicate,
RedisGeoCommands.GeoSearchStoreCommandArgs args)
Get the members using
GeoReference as center of the query within the boundaries of a given
predicate applying RedisGeoCommands.GeoRadiusCommandArgs and store results at destKey . |
reactor.core.publisher.Mono<Long> |
ReactiveGeoOperations.searchAndStore(K key,
K destKey,
GeoReference<M> reference,
GeoShape geoPredicate,
RedisGeoCommands.GeoSearchStoreCommandArgs args)
Get the members using
GeoReference as center of the query within the boundaries of a given
predicate applying RedisGeoCommands.GeoRadiusCommandArgs and store results at destKey . |
Copyright © 2011–2022 Pivotal Software, Inc.. All rights reserved.