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.connection.jedis |
Connection package for Jedis library.
|
org.springframework.data.redis.connection.lettuce |
Connection package for Lettuce Redis client.
|
org.springframework.data.redis.core |
Core package for integrating Redis with Spring concepts.
|
Modifier and Type | Method and Description |
---|---|
protected RedisGeoCommands.GeoRadiusCommandArgs |
RedisGeoCommands.GeoRadiusCommandArgs.clone() |
RedisGeoCommands.GeoRadiusCommandArgs |
RedisGeoCommands.GeoRadiusCommandArgs.includeCoordinates()
Sets the
RedisGeoCommands.GeoRadiusCommandArgs.Flag.WITHCOORD flag to also return the longitude, latitude coordinates of the matching items. |
RedisGeoCommands.GeoRadiusCommandArgs |
RedisGeoCommands.GeoRadiusCommandArgs.includeDistance()
Sets the
RedisGeoCommands.GeoRadiusCommandArgs.Flag.WITHDIST flag to also return the distance of the returned items from the specified center. |
RedisGeoCommands.GeoRadiusCommandArgs |
RedisGeoCommands.GeoRadiusCommandArgs.limit(long count)
Limit the results to the first N matching items.
|
static RedisGeoCommands.GeoRadiusCommandArgs |
RedisGeoCommands.GeoRadiusCommandArgs.newGeoRadiusArgs()
Create new
RedisGeoCommands.GeoRadiusCommandArgs . |
RedisGeoCommands.GeoRadiusCommandArgs |
RedisGeoCommands.GeoRadiusCommandArgs.sort(org.springframework.data.domain.Sort.Direction direction)
Apply a sort direction.
|
RedisGeoCommands.GeoRadiusCommandArgs |
RedisGeoCommands.GeoRadiusCommandArgs.sortAscending()
Sort returned items from the nearest to the furthest, relative to the center.
|
RedisGeoCommands.GeoRadiusCommandArgs |
RedisGeoCommands.GeoRadiusCommandArgs.sortDescending()
Sort returned items from the furthest to the nearest, relative to the center.
|
Modifier and Type | Method and Description |
---|---|
Optional<RedisGeoCommands.GeoRadiusCommandArgs> |
ReactiveGeoCommands.GeoRadiusCommand.getArgs() |
Optional<RedisGeoCommands.GeoRadiusCommandArgs> |
ReactiveGeoCommands.GeoRadiusByMemberCommand.getArgs() |
Modifier and Type | Method and Description |
---|---|
org.springframework.data.geo.GeoResults<RedisGeoCommands.GeoLocation<byte[]>> |
DefaultStringRedisConnection.geoRadius(byte[] key,
org.springframework.data.geo.Circle within,
RedisGeoCommands.GeoRadiusCommandArgs args) |
default org.springframework.data.geo.GeoResults<RedisGeoCommands.GeoLocation<byte[]>> |
DefaultedRedisConnection.geoRadius(byte[] key,
org.springframework.data.geo.Circle within,
RedisGeoCommands.GeoRadiusCommandArgs args)
Deprecated.
in favor of
RedisConnection.geoCommands() }. |
org.springframework.data.geo.GeoResults<RedisGeoCommands.GeoLocation<byte[]>> |
RedisGeoCommands.geoRadius(byte[] key,
org.springframework.data.geo.Circle within,
RedisGeoCommands.GeoRadiusCommandArgs args)
Get the members within the boundaries of a given
Circle applying RedisGeoCommands.GeoRadiusCommandArgs . |
default reactor.core.publisher.Flux<org.springframework.data.geo.GeoResult<RedisGeoCommands.GeoLocation<ByteBuffer>>> |
ReactiveGeoCommands.geoRadius(ByteBuffer key,
org.springframework.data.geo.Circle circle,
RedisGeoCommands.GeoRadiusCommandArgs geoRadiusArgs)
Get the members within the boundaries of a given
Circle applying given parameters. |
org.springframework.data.geo.GeoResults<RedisGeoCommands.GeoLocation<String>> |
StringRedisConnection.geoRadius(String key,
org.springframework.data.geo.Circle within,
RedisGeoCommands.GeoRadiusCommandArgs args)
Get the members within the boundaries of a given
Circle applying GeoRadiusCommandArgs . |
org.springframework.data.geo.GeoResults<RedisGeoCommands.GeoLocation<String>> |
DefaultStringRedisConnection.geoRadius(String key,
org.springframework.data.geo.Circle within,
RedisGeoCommands.GeoRadiusCommandArgs args) |
org.springframework.data.geo.GeoResults<RedisGeoCommands.GeoLocation<byte[]>> |
DefaultStringRedisConnection.geoRadiusByMember(byte[] key,
byte[] member,
org.springframework.data.geo.Distance radius,
RedisGeoCommands.GeoRadiusCommandArgs args) |
default org.springframework.data.geo.GeoResults<RedisGeoCommands.GeoLocation<byte[]>> |
DefaultedRedisConnection.geoRadiusByMember(byte[] key,
byte[] member,
org.springframework.data.geo.Distance radius,
RedisGeoCommands.GeoRadiusCommandArgs args)
Deprecated.
in favor of
RedisConnection.geoCommands() }. |
org.springframework.data.geo.GeoResults<RedisGeoCommands.GeoLocation<byte[]>> |
RedisGeoCommands.geoRadiusByMember(byte[] key,
byte[] member,
org.springframework.data.geo.Distance radius,
RedisGeoCommands.GeoRadiusCommandArgs args)
Get the members within the circle defined by the members coordinates, given
Distance
and RedisGeoCommands.GeoRadiusCommandArgs . |
default reactor.core.publisher.Flux<org.springframework.data.geo.GeoResult<RedisGeoCommands.GeoLocation<ByteBuffer>>> |
ReactiveGeoCommands.geoRadiusByMember(ByteBuffer key,
ByteBuffer member,
org.springframework.data.geo.Distance distance,
RedisGeoCommands.GeoRadiusCommandArgs geoRadiusArgs)
Get the members within given
Distance from member applying given parameters. |
org.springframework.data.geo.GeoResults<RedisGeoCommands.GeoLocation<String>> |
StringRedisConnection.geoRadiusByMember(String key,
String member,
org.springframework.data.geo.Distance radius,
RedisGeoCommands.GeoRadiusCommandArgs args)
Get the members within the circle defined by the members coordinates and given
Distance and GeoRadiusCommandArgs . |
org.springframework.data.geo.GeoResults<RedisGeoCommands.GeoLocation<String>> |
DefaultStringRedisConnection.geoRadiusByMember(String key,
String member,
org.springframework.data.geo.Distance radius,
RedisGeoCommands.GeoRadiusCommandArgs args) |
ReactiveGeoCommands.GeoRadiusCommand |
ReactiveGeoCommands.GeoRadiusCommand.withArgs(RedisGeoCommands.GeoRadiusCommandArgs args)
Applies command
RedisGeoCommands.GeoRadiusCommandArgs . |
ReactiveGeoCommands.GeoRadiusByMemberCommand |
ReactiveGeoCommands.GeoRadiusByMemberCommand.withArgs(RedisGeoCommands.GeoRadiusCommandArgs args)
Applies command
RedisGeoCommands.GeoRadiusCommandArgs . |
Modifier and Type | Method and Description |
---|---|
static redis.clients.jedis.params.GeoRadiusParam |
JedisConverters.toGeoRadiusParam(RedisGeoCommands.GeoRadiusCommandArgs source)
Convert
RedisGeoCommands.GeoRadiusCommandArgs into GeoRadiusParam . |
Modifier and Type | Method and Description |
---|---|
static io.lettuce.core.GeoArgs |
LettuceConverters.toGeoArgs(RedisGeoCommands.GeoRadiusCommandArgs args)
Convert
RedisGeoCommands.GeoRadiusCommandArgs into GeoArgs . |
Modifier and Type | Method and Description |
---|---|
default org.springframework.data.geo.GeoResults<RedisGeoCommands.GeoLocation<M>> |
BoundGeoOperations.geoRadius(org.springframework.data.geo.Circle within,
RedisGeoCommands.GeoRadiusCommandArgs args)
Deprecated.
since 2.0, use
#radius(Circle, GeoRadiusCommandArgs) . |
default org.springframework.data.geo.GeoResults<RedisGeoCommands.GeoLocation<M>> |
GeoOperations.geoRadius(K key,
org.springframework.data.geo.Circle within,
RedisGeoCommands.GeoRadiusCommandArgs args)
Deprecated.
since 2.0, use
#radius(Object, Circle, GeoRadiusCommandArgs) . |
default org.springframework.data.geo.GeoResults<RedisGeoCommands.GeoLocation<M>> |
GeoOperations.geoRadiusByMember(K key,
M member,
org.springframework.data.geo.Distance distance,
RedisGeoCommands.GeoRadiusCommandArgs args)
Deprecated.
since 2.0, use
#radius(Object, Object, Distance, GeoRadiusCommandArgs) . |
default org.springframework.data.geo.GeoResults<RedisGeoCommands.GeoLocation<M>> |
BoundGeoOperations.geoRadiusByMember(M member,
org.springframework.data.geo.Distance distance,
RedisGeoCommands.GeoRadiusCommandArgs args)
Deprecated.
since 2.0, use
#radius(Object, Distance, GeoRadiusCommandArgs) . |
org.springframework.data.geo.GeoResults<RedisGeoCommands.GeoLocation<M>> |
BoundGeoOperations.radius(org.springframework.data.geo.Circle within,
RedisGeoCommands.GeoRadiusCommandArgs args)
Get the members within the boundaries of a given
Circle applying RedisGeoCommands.GeoRadiusCommandArgs . |
reactor.core.publisher.Flux<org.springframework.data.geo.GeoResult<RedisGeoCommands.GeoLocation<M>>> |
ReactiveGeoOperations.radius(K key,
org.springframework.data.geo.Circle within,
RedisGeoCommands.GeoRadiusCommandArgs args)
Get the members within the boundaries of a given
Circle applying RedisGeoCommands.GeoRadiusCommandArgs . |
org.springframework.data.geo.GeoResults<RedisGeoCommands.GeoLocation<M>> |
GeoOperations.radius(K key,
org.springframework.data.geo.Circle within,
RedisGeoCommands.GeoRadiusCommandArgs args)
Get the members within the boundaries of a given
Circle applying RedisGeoCommands.GeoRadiusCommandArgs . |
reactor.core.publisher.Flux<org.springframework.data.geo.GeoResult<RedisGeoCommands.GeoLocation<M>>> |
ReactiveGeoOperations.radius(K key,
M member,
org.springframework.data.geo.Distance distance,
RedisGeoCommands.GeoRadiusCommandArgs args)
Get the members within the circle defined by the members coordinates and given
radius applying
Metric and RedisGeoCommands.GeoRadiusCommandArgs . |
org.springframework.data.geo.GeoResults<RedisGeoCommands.GeoLocation<M>> |
GeoOperations.radius(K key,
M member,
org.springframework.data.geo.Distance distance,
RedisGeoCommands.GeoRadiusCommandArgs args)
Get the members within the circle defined by the members coordinates and given
radius applying
Metric and RedisGeoCommands.GeoRadiusCommandArgs . |
org.springframework.data.geo.GeoResults<RedisGeoCommands.GeoLocation<M>> |
BoundGeoOperations.radius(M member,
org.springframework.data.geo.Distance distance,
RedisGeoCommands.GeoRadiusCommandArgs args)
Get the members within the circle defined by the members coordinates and given
radius applying
Metric and RedisGeoCommands.GeoRadiusCommandArgs . |
Copyright © 2011–2023 Pivotal Software, Inc.. All rights reserved.