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
(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 GeoResults<RedisGeoCommands.GeoLocation<byte[]>>
DefaultedRedisConnection.geoRadius
(byte[] key, Circle within, RedisGeoCommands.GeoRadiusCommandArgs args) Deprecated.GeoResults<RedisGeoCommands.GeoLocation<byte[]>>
DefaultStringRedisConnection.geoRadius
(byte[] key, Circle within, RedisGeoCommands.GeoRadiusCommandArgs args) DefaultStringRedisConnection.geoRadius
(String key, Circle within, RedisGeoCommands.GeoRadiusCommandArgs args) default reactor.core.publisher.Flux<GeoResult<RedisGeoCommands.GeoLocation<ByteBuffer>>>
ReactiveGeoCommands.geoRadius
(ByteBuffer key, Circle circle, RedisGeoCommands.GeoRadiusCommandArgs geoRadiusArgs) Get the members within the boundaries of a givenCircle
applying given parameters.GeoResults<RedisGeoCommands.GeoLocation<byte[]>>
RedisGeoCommands.geoRadius
(byte[] key, Circle within, RedisGeoCommands.GeoRadiusCommandArgs args) Get the members within the boundaries of a givenCircle
applyingRedisGeoCommands.GeoRadiusCommandArgs
.StringRedisConnection.geoRadius
(String key, Circle within, RedisGeoCommands.GeoRadiusCommandArgs args) Get the members within the boundaries of a givenCircle
applyingRedisGeoCommands.GeoRadiusCommandArgs
.default GeoResults<RedisGeoCommands.GeoLocation<byte[]>>
DefaultedRedisConnection.geoRadiusByMember
(byte[] key, byte[] member, Distance radius, RedisGeoCommands.GeoRadiusCommandArgs args) Deprecated.in favor ofRedisCommandsProvider.geoCommands()
}.GeoResults<RedisGeoCommands.GeoLocation<byte[]>>
DefaultStringRedisConnection.geoRadiusByMember
(byte[] key, byte[] member, Distance radius, RedisGeoCommands.GeoRadiusCommandArgs args) DefaultStringRedisConnection.geoRadiusByMember
(String key, String member, Distance radius, RedisGeoCommands.GeoRadiusCommandArgs args) default reactor.core.publisher.Flux<GeoResult<RedisGeoCommands.GeoLocation<ByteBuffer>>>
ReactiveGeoCommands.geoRadiusByMember
(ByteBuffer key, ByteBuffer member, Distance distance, RedisGeoCommands.GeoRadiusCommandArgs geoRadiusArgs) Get the members within givenDistance
from member applying given parameters.GeoResults<RedisGeoCommands.GeoLocation<byte[]>>
RedisGeoCommands.geoRadiusByMember
(byte[] key, byte[] member, Distance radius, RedisGeoCommands.GeoRadiusCommandArgs args) Get the members within the circle defined by the members coordinates, givenDistance
andRedisGeoCommands.GeoRadiusCommandArgs
.StringRedisConnection.geoRadiusByMember
(String key, String member, 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 TypeMethodDescriptionBoundGeoOperations.radius
(M member, Distance distance, RedisGeoCommands.GeoRadiusCommandArgs args) Get the members within the circle defined by the members coordinates and given radius applyingMetric
andRedisGeoCommands.GeoRadiusCommandArgs
.BoundGeoOperations.radius
(Circle within, RedisGeoCommands.GeoRadiusCommandArgs args) Get the members within the boundaries of a givenCircle
applyingRedisGeoCommands.GeoRadiusCommandArgs
.GeoOperations.radius
(K key, M member, Distance distance, RedisGeoCommands.GeoRadiusCommandArgs args) Get the members within the circle defined by the members coordinates and given radius applyingMetric
andRedisGeoCommands.GeoRadiusCommandArgs
.GeoOperations.radius
(K key, Circle within, RedisGeoCommands.GeoRadiusCommandArgs args) Get the members within the boundaries of a givenCircle
applyingRedisGeoCommands.GeoRadiusCommandArgs
.reactor.core.publisher.Flux<GeoResult<RedisGeoCommands.GeoLocation<M>>>
ReactiveGeoOperations.radius
(K key, M member, 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<GeoResult<RedisGeoCommands.GeoLocation<M>>>
ReactiveGeoOperations.radius
(K key, Circle within, RedisGeoCommands.GeoRadiusCommandArgs args) Get the members within the boundaries of a givenCircle
applyingRedisGeoCommands.GeoRadiusCommandArgs
.
RedisCommandsProvider.geoCommands()
}.