Uses of Interface
org.springframework.data.redis.domain.geo.GeoShape
Packages that use GeoShape
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 GeoShape in org.springframework.data.redis.connection
Methods in org.springframework.data.redis.connection that return GeoShapeModifier and TypeMethodDescriptionReactiveGeoCommands.GeoSearchCommand.getShape()ReactiveGeoCommands.GeoSearchStoreCommand.getShape()Methods in org.springframework.data.redis.connection with parameters of type GeoShapeModifier and TypeMethodDescriptiondefault GeoResults<RedisGeoCommands.GeoLocation<byte[]>>DefaultedRedisConnection.geoSearch(byte[] key, GeoReference<byte[]> reference, GeoShape predicate, RedisGeoCommands.GeoSearchCommandArgs args) Deprecated.GeoResults<RedisGeoCommands.GeoLocation<byte[]>>DefaultStringRedisConnection.geoSearch(byte[] key, GeoReference<byte[]> reference, GeoShape predicate, RedisGeoCommands.GeoSearchCommandArgs args) DefaultStringRedisConnection.geoSearch(String key, GeoReference<String> reference, GeoShape predicate, RedisGeoCommands.GeoSearchCommandArgs args) default Flux<GeoResult<RedisGeoCommands.GeoLocation<ByteBuffer>>>ReactiveGeoCommands.geoSearch(ByteBuffer key, GeoReference<ByteBuffer> reference, GeoShape shape, RedisGeoCommands.GeoSearchCommandArgs args) Return the members of a geo set which are within the borders of the area specified by a givenshape.GeoResults<RedisGeoCommands.GeoLocation<byte[]>>RedisGeoCommands.geoSearch(byte[] key, GeoReference<byte[]> reference, GeoShape predicate, RedisGeoCommands.GeoSearchCommandArgs args) Return the members of a geo set which are within the borders of the area specified by a givenshape.StringRedisConnection.geoSearch(String key, GeoReference<String> reference, GeoShape predicate, RedisGeoCommands.GeoSearchCommandArgs args) Return the members of a geo set which are within the borders of the area specified by a givenshape.default LongDefaultedRedisConnection.geoSearchStore(byte[] destKey, byte[] key, GeoReference<byte[]> reference, GeoShape predicate, RedisGeoCommands.GeoSearchStoreCommandArgs args) Deprecated.in favor ofRedisCommandsProvider.geoCommands()}.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.Creates a newReactiveGeoCommands.GeoSearchCommandgiven aGeoShape.Creates a newReactiveGeoCommands.GeoSearchStoreCommandgiven aGeoShape. -
Uses of GeoShape in org.springframework.data.redis.core
Methods in org.springframework.data.redis.core with parameters of type GeoShapeModifier and TypeMethodDescriptionBoundGeoOperations.search(GeoReference<M> reference, GeoShape geoPredicate, RedisGeoCommands.GeoSearchCommandArgs args) Get the members usingGeoReferenceas center of the query within the boundaries of a givenpredicateapplyingRedisGeoCommands.GeoRadiusCommandArgs.GeoOperations.search(K key, GeoReference<M> reference, GeoShape geoPredicate, RedisGeoCommands.GeoSearchCommandArgs args) Get the members usingGeoReferenceas center of the query within the boundaries of a givenpredicateapplyingRedisGeoCommands.GeoRadiusCommandArgs.ReactiveGeoOperations.search(K key, GeoReference<M> reference, GeoShape geoPredicate, RedisGeoCommands.GeoSearchCommandArgs args) Get the members usingGeoReferenceas center of the query within the boundaries of a givenpredicateapplyingRedisGeoCommands.GeoRadiusCommandArgs.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.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, GeoShape geoPredicate, RedisGeoCommands.GeoSearchStoreCommandArgs args) Get the members usingGeoReferenceas center of the query within the boundaries of a givenpredicateapplyingRedisGeoCommands.GeoRadiusCommandArgsand store results atdestKey. -
Uses of GeoShape in org.springframework.data.redis.domain.geo
Classes in org.springframework.data.redis.domain.geo that implement GeoShapeModifier and TypeClassDescriptionclassBounding box defined by width and height.classRadius defined byDistance.Methods in org.springframework.data.redis.domain.geo that return GeoShapeModifier and TypeMethodDescriptionstatic GeoShapeGeoShape.byBox(double width, double height, RedisGeoCommands.DistanceUnit distanceUnit) Create a shape used as predicate for geo queries from a bounding box with specified bywidthandheight.static GeoShapeGeoShape.byBox(BoundingBox boundingBox) Create a shape used as predicate for geo queries from aBoundingBox.static GeoShapeCreate a shape used as predicate for geo queries from aradiusaround the query center point.
RedisCommandsProvider.geoCommands()}.