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 | Class and Description |
---|---|
static class |
RedisGeoCommands.GeoRadiusCommandArgs
Additional arguments (like count/sort/...) to be used with
RedisGeoCommands . |
Modifier and Type | Method and Description |
---|---|
protected RedisGeoCommands.GeoSearchCommandArgs |
RedisGeoCommands.GeoSearchCommandArgs.clone() |
RedisGeoCommands.GeoSearchCommandArgs |
RedisGeoCommands.GeoSearchCommandArgs.includeCoordinates()
Sets the
RedisGeoCommands.GeoRadiusCommandArgs.Flag.WITHCOORD flag to also return the longitude, latitude coordinates of the matching items. |
RedisGeoCommands.GeoSearchCommandArgs |
RedisGeoCommands.GeoSearchCommandArgs.includeDistance()
Sets the
RedisGeoCommands.GeoRadiusCommandArgs.Flag.WITHDIST flag to also return the distance of the returned items from the specified center. |
RedisGeoCommands.GeoSearchCommandArgs |
RedisGeoCommands.GeoSearchCommandArgs.limit(long count)
Limit the results to the first N matching items.
|
RedisGeoCommands.GeoSearchCommandArgs |
RedisGeoCommands.GeoSearchCommandArgs.limit(long count,
boolean any)
Limit the results to the first N matching items.
|
static RedisGeoCommands.GeoSearchCommandArgs |
RedisGeoCommands.GeoSearchCommandArgs.newGeoSearchArgs()
Create new
RedisGeoCommands.GeoSearchCommandArgs . |
RedisGeoCommands.GeoSearchCommandArgs |
RedisGeoCommands.GeoSearchCommandArgs.sort(Sort.Direction direction)
Apply a sort direction.
|
RedisGeoCommands.GeoSearchCommandArgs |
RedisGeoCommands.GeoSearchCommandArgs.sortAscending()
Sort returned items from the nearest to the furthest, relative to the center.
|
RedisGeoCommands.GeoSearchCommandArgs |
RedisGeoCommands.GeoSearchCommandArgs.sortDescending()
Sort returned items from the furthest to the nearest, relative to the center.
|
Modifier and Type | Method and Description |
---|---|
Optional<RedisGeoCommands.GeoSearchCommandArgs> |
ReactiveGeoCommands.GeoSearchCommand.getArgs() |
Modifier and Type | Method and Description |
---|---|
GeoResults<RedisGeoCommands.GeoLocation<byte[]>> |
DefaultStringRedisConnection.geoSearch(byte[] key,
GeoReference<byte[]> reference,
GeoShape predicate,
RedisGeoCommands.GeoSearchCommandArgs args) |
default GeoResults<RedisGeoCommands.GeoLocation<byte[]>> |
DefaultedRedisConnection.geoSearch(byte[] key,
GeoReference<byte[]> reference,
GeoShape predicate,
RedisGeoCommands.GeoSearchCommandArgs args)
Deprecated.
in favor of
RedisConnection.geoCommands() }. |
GeoResults<RedisGeoCommands.GeoLocation<byte[]>> |
RedisGeoCommands.geoSearch(byte[] key,
GeoReference<byte[]> reference,
GeoShape predicate,
RedisGeoCommands.GeoSearchCommandArgs args)
Return the members of a geo set which are within the borders of the area specified by a given
shape . |
default reactor.core.publisher.Flux<GeoResult<RedisGeoCommands.GeoLocation<ByteBuffer>>> |
ReactiveGeoCommands.geoSearch(ByteBuffer key,
GeoReference<ByteBuffer> reference,
GeoShape shape,
RedisGeoCommands.GeoSearchCommandArgs args)
Return the members of a geo set which are within the borders of the area specified by a given
shape . |
GeoResults<RedisGeoCommands.GeoLocation<String>> |
StringRedisConnection.geoSearch(String key,
GeoReference<String> reference,
GeoShape predicate,
RedisGeoCommands.GeoSearchCommandArgs args)
Return the members of a geo set which are within the borders of the area specified by a given
shape . |
GeoResults<RedisGeoCommands.GeoLocation<String>> |
DefaultStringRedisConnection.geoSearch(String key,
GeoReference<String> reference,
GeoShape predicate,
RedisGeoCommands.GeoSearchCommandArgs args) |
ReactiveGeoCommands.GeoSearchCommand |
ReactiveGeoCommands.GeoSearchCommand.with(RedisGeoCommands.GeoSearchCommandArgs args)
Sets the command args.
|
Modifier and Type | Method and Description |
---|---|
default GeoResults<RedisGeoCommands.GeoLocation<M>> |
BoundGeoOperations.search(GeoReference<M> reference,
BoundingBox boundingBox,
RedisGeoCommands.GeoSearchCommandArgs args)
Get the members using
GeoReference as center of the query within the boundaries of a given
bounding box applying RedisGeoCommands.GeoRadiusCommandArgs . |
default GeoResults<RedisGeoCommands.GeoLocation<M>> |
BoundGeoOperations.search(GeoReference<M> reference,
Distance radius,
RedisGeoCommands.GeoSearchCommandArgs args)
Get the members using
GeoReference as center of the query within the boundaries of a given
radius applying RedisGeoCommands.GeoRadiusCommandArgs . |
GeoResults<RedisGeoCommands.GeoLocation<M>> |
BoundGeoOperations.search(GeoReference<M> reference,
GeoShape geoPredicate,
RedisGeoCommands.GeoSearchCommandArgs args)
Get the members using
GeoReference as center of the query within the boundaries of a given
predicate applying RedisGeoCommands.GeoRadiusCommandArgs . |
default reactor.core.publisher.Flux<GeoResult<RedisGeoCommands.GeoLocation<M>>> |
ReactiveGeoOperations.search(K key,
GeoReference<M> reference,
BoundingBox boundingBox,
RedisGeoCommands.GeoSearchCommandArgs args)
Get the members using
GeoReference as center of the query within the boundaries of a given
bounding box applying RedisGeoCommands.GeoRadiusCommandArgs . |
default GeoResults<RedisGeoCommands.GeoLocation<M>> |
GeoOperations.search(K key,
GeoReference<M> reference,
BoundingBox boundingBox,
RedisGeoCommands.GeoSearchCommandArgs args)
Get the members using
GeoReference as center of the query within the boundaries of a given
bounding box applying RedisGeoCommands.GeoRadiusCommandArgs . |
default reactor.core.publisher.Flux<GeoResult<RedisGeoCommands.GeoLocation<M>>> |
ReactiveGeoOperations.search(K key,
GeoReference<M> reference,
Distance radius,
RedisGeoCommands.GeoSearchCommandArgs args)
Get the members using
GeoReference as center of the query within the boundaries of a given
radius applying RedisGeoCommands.GeoRadiusCommandArgs . |
default GeoResults<RedisGeoCommands.GeoLocation<M>> |
GeoOperations.search(K key,
GeoReference<M> reference,
Distance radius,
RedisGeoCommands.GeoSearchCommandArgs args)
Get the members using
GeoReference as center of the query within the boundaries of a given
radius applying RedisGeoCommands.GeoRadiusCommandArgs . |
reactor.core.publisher.Flux<GeoResult<RedisGeoCommands.GeoLocation<M>>> |
ReactiveGeoOperations.search(K key,
GeoReference<M> reference,
GeoShape geoPredicate,
RedisGeoCommands.GeoSearchCommandArgs args)
Get the members using
GeoReference as center of the query within the boundaries of a given
predicate applying RedisGeoCommands.GeoRadiusCommandArgs . |
GeoResults<RedisGeoCommands.GeoLocation<M>> |
GeoOperations.search(K key,
GeoReference<M> reference,
GeoShape geoPredicate,
RedisGeoCommands.GeoSearchCommandArgs args)
Get the members using
GeoReference as center of the query within the boundaries of a given
predicate applying RedisGeoCommands.GeoRadiusCommandArgs . |
Copyright © 2011–2022 Pivotal Software, Inc.. All rights reserved.