Uses of Class
org.springframework.data.redis.connection.RedisGeoCommands.GeoRadiusCommandArgs
Package
Description
Connection package providing low-level abstractions for interacting with the various Redis 'drivers'/libraries.
Connection package for Lettuce Redis client.
Core package for integrating Redis with Spring concepts.
-
Uses of RedisGeoCommands.GeoRadiusCommandArgs in org.springframework.data.redis.connection
Modifier and TypeMethodDescriptionprotected RedisGeoCommands.GeoRadiusCommandArgs
RedisGeoCommands.GeoRadiusCommandArgs.clone()
RedisGeoCommands.GeoRadiusCommandArgs.includeCoordinates()
Sets theRedisGeoCommands.GeoRadiusCommandArgs.Flag.WITHCOORD
flag to also return the longitude, latitude coordinates of the matching items.RedisGeoCommands.GeoRadiusCommandArgs.includeDistance()
Sets theRedisGeoCommands.GeoRadiusCommandArgs.Flag.WITHDIST
flag to also return the distance of the returned items from the specified center.RedisGeoCommands.GeoRadiusCommandArgs.limit
(long count) Limit the results to the first N matching items.RedisGeoCommands.GeoRadiusCommandArgs.newGeoRadiusArgs()
Create newRedisGeoCommands.GeoRadiusCommandArgs
.RedisGeoCommands.GeoRadiusCommandArgs.sort
(org.springframework.data.domain.Sort.Direction direction) Apply a sort direction.RedisGeoCommands.GeoRadiusCommandArgs.sortAscending()
Sort returned items from the nearest to the furthest, relative to the center.RedisGeoCommands.GeoRadiusCommandArgs.sortDescending()
Sort returned items from the furthest to the nearest, relative to the center.Modifier and TypeMethodDescriptionReactiveGeoCommands.GeoRadiusByMemberCommand.getArgs()
ReactiveGeoCommands.GeoRadiusCommand.getArgs()
Modifier and TypeMethodDescriptiondefault org.springframework.data.geo.GeoResults<RedisGeoCommands.GeoLocation<byte[]>>
DefaultedRedisConnection.geoRadius
(byte[] key, org.springframework.data.geo.Circle within, RedisGeoCommands.GeoRadiusCommandArgs args) Deprecated.org.springframework.data.geo.GeoResults<RedisGeoCommands.GeoLocation<byte[]>>
DefaultStringRedisConnection.geoRadius
(byte[] key, org.springframework.data.geo.Circle within, RedisGeoCommands.GeoRadiusCommandArgs args) org.springframework.data.geo.GeoResults<RedisGeoCommands.GeoLocation<String>>
DefaultStringRedisConnection.geoRadius
(String key, org.springframework.data.geo.Circle within, RedisGeoCommands.GeoRadiusCommandArgs args) 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 givenCircle
applying given parameters.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 givenCircle
applyingRedisGeoCommands.GeoRadiusCommandArgs
.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 givenCircle
applyingRedisGeoCommands.GeoRadiusCommandArgs
.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 ofRedisCommandsProvider.geoCommands()
}.org.springframework.data.geo.GeoResults<RedisGeoCommands.GeoLocation<byte[]>>
DefaultStringRedisConnection.geoRadiusByMember
(byte[] key, byte[] member, org.springframework.data.geo.Distance radius, RedisGeoCommands.GeoRadiusCommandArgs args) org.springframework.data.geo.GeoResults<RedisGeoCommands.GeoLocation<String>>
DefaultStringRedisConnection.geoRadiusByMember
(String key, String member, org.springframework.data.geo.Distance radius, RedisGeoCommands.GeoRadiusCommandArgs args) 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 givenDistance
from member applying given parameters.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, givenDistance
andRedisGeoCommands.GeoRadiusCommandArgs
.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 givenDistance
andRedisGeoCommands.GeoRadiusCommandArgs
.ReactiveGeoCommands.GeoRadiusByMemberCommand.withArgs
(RedisGeoCommands.GeoRadiusCommandArgs args) Applies commandRedisGeoCommands.GeoRadiusCommandArgs
.ReactiveGeoCommands.GeoRadiusCommand.withArgs
(RedisGeoCommands.GeoRadiusCommandArgs args) Applies commandRedisGeoCommands.GeoRadiusCommandArgs
. -
Uses of RedisGeoCommands.GeoRadiusCommandArgs in org.springframework.data.redis.connection.lettuce
Modifier and TypeMethodDescriptionstatic io.lettuce.core.GeoArgs
LettuceConverters.toGeoArgs
(RedisGeoCommands.GeoRadiusCommandArgs args) ConvertRedisGeoCommands.GeoRadiusCommandArgs
intoGeoArgs
. -
Uses of RedisGeoCommands.GeoRadiusCommandArgs in org.springframework.data.redis.core
Modifier and TypeMethodDescriptionorg.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 applyingMetric
andRedisGeoCommands.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 givenCircle
applyingRedisGeoCommands.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 applyingMetric
andRedisGeoCommands.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 givenCircle
applyingRedisGeoCommands.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 applyingMetric
andRedisGeoCommands.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 givenCircle
applyingRedisGeoCommands.GeoRadiusCommandArgs
.
RedisCommandsProvider.geoCommands()
}.