Uses of Class
io.quarkus.redis.datasource.geo.GeoSearchArgs
Packages that use GeoSearchArgs
-
Uses of GeoSearchArgs in io.quarkus.redis.datasource.geo
Methods in io.quarkus.redis.datasource.geo that return GeoSearchArgsModifier and TypeMethodDescriptionGeoSearchArgs.any()When ANY is provided the command will return as soon as enough matches are found, so the results may not be the ones closest to the specified point, but on the other hand, the effort invested by the server is significantly lower.GeoSearchArgs.ascending()UseASCorder (from small to large).Search inside circular area according to givenradius.Search inside circular area according to givenradius.GeoSearchArgs.count(long count) By default all the matching items are returned.GeoSearchArgs.descending()UseDESCorder (from large to small).GeoSearchArgs.fromCoordinate(double longitude, double latitude) Use the givenlongitudeandlatitudeposition.GeoSearchArgs.fromMember(V member) Use the position of the given existingmemberin the sorted set.GeoSearchArgs.withCoordinates()Also return the longitude,latitude coordinates of the matching items.GeoSearchArgs.withDistance()Also return the distance of the returned items from the specified center.GeoSearchArgs.withHash()Also return the raw geohash-encoded sorted set score of the item, in the form of a 52 bit unsigned integer.Methods in io.quarkus.redis.datasource.geo with parameters of type GeoSearchArgsModifier and TypeMethodDescriptionGeoCommands.geosearch(K key, GeoSearchArgs<V> args) Execute the command GEOSEARCH.ReactiveGeoCommands.geosearch(K key, GeoSearchArgs<V> args) Execute the command GEOSEARCH.io.smallrye.mutiny.Uni<Void>ReactiveTransactionalGeoCommands.geosearch(K key, GeoSearchArgs<V> args) Execute the command GEOSEARCH.voidTransactionalGeoCommands.geosearch(K key, GeoSearchArgs<V> args) Execute the command GEOSEARCH. -
Uses of GeoSearchArgs in io.quarkus.redis.runtime.datasource
Methods in io.quarkus.redis.runtime.datasource with parameters of type GeoSearchArgsModifier and TypeMethodDescription(package private) io.smallrye.mutiny.Uni<io.vertx.mutiny.redis.client.Response>AbstractGeoCommands._geosearch(K key, GeoSearchArgs<V> geoArgs) BlockingGeoCommandsImpl.geosearch(K key, GeoSearchArgs<V> args) voidBlockingTransactionalGeoCommandsImpl.geosearch(K key, GeoSearchArgs<V> args) ReactiveGeoCommandsImpl.geosearch(K key, GeoSearchArgs<V> geoArgs) io.smallrye.mutiny.Uni<Void>ReactiveTransactionalGeoCommandsImpl.geosearch(K key, GeoSearchArgs<V> args)