Uses of Class
org.springframework.data.redis.connection.RedisGeoCommands.GeoSearchStoreCommandArgs
Packages that use RedisGeoCommands.GeoSearchStoreCommandArgs
Package
Description
Connection package providing low-level abstractions for interacting with the various Redis 'drivers'/libraries.
Core package for integrating Redis with Spring concepts.
-
Uses of RedisGeoCommands.GeoSearchStoreCommandArgs in org.springframework.data.redis.connection
Methods in org.springframework.data.redis.connection that return RedisGeoCommands.GeoSearchStoreCommandArgsModifier and TypeMethodDescriptionRedisGeoCommands.GeoSearchStoreCommandArgs.clone()
RedisGeoCommands.GeoSearchStoreCommandArgs.limit
(long count) Limit the results to the first N matching items.RedisGeoCommands.GeoSearchStoreCommandArgs.limit
(long count, boolean any) Limit the results to the first N matching items.RedisGeoCommands.GeoSearchStoreCommandArgs.newGeoSearchStoreArgs()
Create newRedisGeoCommands.GeoSearchStoreCommandArgs
.RedisGeoCommands.GeoSearchStoreCommandArgs.sort
(org.springframework.data.domain.Sort.Direction direction) Apply a sort direction.RedisGeoCommands.GeoSearchStoreCommandArgs.sortAscending()
Sort returned items from the nearest to the furthest, relative to the center.RedisGeoCommands.GeoSearchStoreCommandArgs.sortDescending()
Sort returned items from the furthest to the nearest, relative to the center.RedisGeoCommands.GeoSearchStoreCommandArgs.storeDistance()
Sets theRedisGeoCommands.GeoRadiusCommandArgs.Flag.STOREDIST
flag to also store the distance of the returned items from the specified center.Methods in org.springframework.data.redis.connection that return types with arguments of type RedisGeoCommands.GeoSearchStoreCommandArgsMethods in org.springframework.data.redis.connection with parameters of type RedisGeoCommands.GeoSearchStoreCommandArgsModifier and TypeMethodDescriptiondefault Long
DefaultedRedisConnection.geoSearchStore
(byte[] destKey, byte[] key, GeoReference<byte[]> reference, GeoShape predicate, RedisGeoCommands.GeoSearchStoreCommandArgs args) Deprecated.DefaultStringRedisConnection.geoSearchStore
(byte[] destKey, byte[] key, GeoReference<byte[]> reference, GeoShape predicate, RedisGeoCommands.GeoSearchStoreCommandArgs args) DefaultStringRedisConnection.geoSearchStore
(String destKey, String key, GeoReference<String> reference, GeoShape predicate, RedisGeoCommands.GeoSearchStoreCommandArgs args) 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 givenshape
and store the result atdestKey
.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 givenshape
and store the result atdestKey
.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 givenshape
and store the result atdestKey
.ReactiveGeoCommands.GeoSearchStoreCommand.with
(RedisGeoCommands.GeoSearchStoreCommandArgs args) Sets the command args. -
Uses of RedisGeoCommands.GeoSearchStoreCommandArgs in org.springframework.data.redis.core
Methods in org.springframework.data.redis.core with parameters of type RedisGeoCommands.GeoSearchStoreCommandArgsModifier and TypeMethodDescriptiondefault Long
BoundGeoOperations.searchAndStore
(K destKey, GeoReference<M> reference, org.springframework.data.geo.Distance radius, RedisGeoCommands.GeoSearchStoreCommandArgs args) Get the members usingGeoReference
as center of the query within the boundaries of a givenradius
applyingRedisGeoCommands.GeoRadiusCommandArgs
and store results atdestKey
.default Long
BoundGeoOperations.searchAndStore
(K destKey, GeoReference<M> reference, BoundingBox boundingBox, RedisGeoCommands.GeoSearchStoreCommandArgs args) Get the members usingGeoReference
as center of the query within the boundaries of a given bounding box applyingRedisGeoCommands.GeoRadiusCommandArgs
and store results atdestKey
.BoundGeoOperations.searchAndStore
(K destKey, GeoReference<M> reference, GeoShape geoPredicate, RedisGeoCommands.GeoSearchStoreCommandArgs args) Get the members usingGeoReference
as center of the query within the boundaries of a givenpredicate
applyingRedisGeoCommands.GeoRadiusCommandArgs
and store results atdestKey
.default Long
GeoOperations.searchAndStore
(K key, K destKey, GeoReference<M> reference, org.springframework.data.geo.Distance radius, RedisGeoCommands.GeoSearchStoreCommandArgs args) Get the members usingGeoReference
as center of the query within the boundaries of a givenradius
applyingRedisGeoCommands.GeoRadiusCommandArgs
and store results atdestKey
.default Long
GeoOperations.searchAndStore
(K key, K destKey, GeoReference<M> reference, BoundingBox boundingBox, RedisGeoCommands.GeoSearchStoreCommandArgs args) Get the members usingGeoReference
as center of the query within the boundaries of a given bounding box applyingRedisGeoCommands.GeoRadiusCommandArgs
and store results atdestKey
.GeoOperations.searchAndStore
(K key, K destKey, GeoReference<M> reference, GeoShape geoPredicate, RedisGeoCommands.GeoSearchStoreCommandArgs args) Get the members usingGeoReference
as center of the query within the boundaries of a givenpredicate
applyingRedisGeoCommands.GeoRadiusCommandArgs
and store results atdestKey
.default reactor.core.publisher.Mono<Long>
ReactiveGeoOperations.searchAndStore
(K key, K destKey, GeoReference<M> reference, org.springframework.data.geo.Distance radius, RedisGeoCommands.GeoSearchStoreCommandArgs args) Get the members usingGeoReference
as center of the query within the boundaries of a givenradius
applyingRedisGeoCommands.GeoRadiusCommandArgs
and store results atdestKey
.default reactor.core.publisher.Mono<Long>
ReactiveGeoOperations.searchAndStore
(K key, K destKey, GeoReference<M> reference, BoundingBox boundingBox, RedisGeoCommands.GeoSearchStoreCommandArgs args) Get the members usingGeoReference
as center of the query within the boundaries of a given bounding box applyingRedisGeoCommands.GeoRadiusCommandArgs
and store results atdestKey
.reactor.core.publisher.Mono<Long>
ReactiveGeoOperations.searchAndStore
(K key, K destKey, GeoReference<M> reference, GeoShape geoPredicate, RedisGeoCommands.GeoSearchStoreCommandArgs args) Get the members usingGeoReference
as center of the query within the boundaries of a givenpredicate
applyingRedisGeoCommands.GeoRadiusCommandArgs
and store results atdestKey
.
RedisCommandsProvider.geoCommands()
}.