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(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.STOREDISTflag 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 LongDefaultedRedisConnection.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) 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 givenshapeand 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 givenshapeand 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 givenshapeand 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 LongBoundGeoOperations.searchAndStore(K destKey, GeoReference<M> reference, Distance radius, RedisGeoCommands.GeoSearchStoreCommandArgs args) Get the members usingGeoReferenceas center of the query within the boundaries of a givenradiusapplyingRedisGeoCommands.GeoRadiusCommandArgsand store results atdestKey.default LongBoundGeoOperations.searchAndStore(K destKey, GeoReference<M> reference, BoundingBox boundingBox, RedisGeoCommands.GeoSearchStoreCommandArgs args) Get the members usingGeoReferenceas center of the query within the boundaries of a given bounding box applyingRedisGeoCommands.GeoRadiusCommandArgsand store results atdestKey.BoundGeoOperations.searchAndStore(K destKey, GeoReference<M> reference, GeoShape geoPredicate, RedisGeoCommands.GeoSearchStoreCommandArgs args) Get the members usingGeoReferenceas center of the query within the boundaries of a givenpredicateapplyingRedisGeoCommands.GeoRadiusCommandArgsand store results atdestKey.default LongGeoOperations.searchAndStore(K key, K destKey, GeoReference<M> reference, Distance radius, RedisGeoCommands.GeoSearchStoreCommandArgs args) Get the members usingGeoReferenceas center of the query within the boundaries of a givenradiusapplyingRedisGeoCommands.GeoRadiusCommandArgsand store results atdestKey.default LongGeoOperations.searchAndStore(K key, K destKey, GeoReference<M> reference, BoundingBox boundingBox, RedisGeoCommands.GeoSearchStoreCommandArgs args) Get the members usingGeoReferenceas center of the query within the boundaries of a given bounding box applyingRedisGeoCommands.GeoRadiusCommandArgsand store results atdestKey.GeoOperations.searchAndStore(K key, K destKey, GeoReference<M> reference, GeoShape geoPredicate, RedisGeoCommands.GeoSearchStoreCommandArgs args) Get the members usingGeoReferenceas center of the query within the boundaries of a givenpredicateapplyingRedisGeoCommands.GeoRadiusCommandArgsand store results atdestKey.ReactiveGeoOperations.searchAndStore(K key, K destKey, GeoReference<M> reference, Distance radius, RedisGeoCommands.GeoSearchStoreCommandArgs args) Get the members usingGeoReferenceas center of the query within the boundaries of a givenradiusapplyingRedisGeoCommands.GeoRadiusCommandArgsand store results atdestKey.ReactiveGeoOperations.searchAndStore(K key, K destKey, GeoReference<M> reference, BoundingBox boundingBox, RedisGeoCommands.GeoSearchStoreCommandArgs args) Get the members usingGeoReferenceas center of the query within the boundaries of a given bounding box applyingRedisGeoCommands.GeoRadiusCommandArgsand store results atdestKey.ReactiveGeoOperations.searchAndStore(K key, K destKey, GeoReference<M> reference, GeoShape geoPredicate, RedisGeoCommands.GeoSearchStoreCommandArgs args) Get the members usingGeoReferenceas center of the query within the boundaries of a givenpredicateapplyingRedisGeoCommands.GeoRadiusCommandArgsand store results atdestKey.
RedisCommandsProvider.geoCommands()}.