Uses of Class
io.quarkus.redis.datasource.geo.GeoSearchStoreArgs
-
Packages that use GeoSearchStoreArgs Package Description io.quarkus.redis.datasource.geo io.quarkus.redis.runtime.datasource -
-
Uses of GeoSearchStoreArgs in io.quarkus.redis.datasource.geo
Methods in io.quarkus.redis.datasource.geo that return GeoSearchStoreArgs Modifier and Type Method Description GeoSearchStoreArgs<V>GeoSearchStoreArgs. 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.GeoSearchStoreArgs<V>GeoSearchStoreArgs. ascending()UseASCorder (from small to large).GeoSearchStoreArgs<V>GeoSearchStoreArgs. byBox(double width, double height, GeoUnit unit)Search inside circular area according to givenradius.GeoSearchStoreArgs<V>GeoSearchStoreArgs. byRadius(double radius, GeoUnit unit)Search inside circular area according to givenradius.GeoSearchStoreArgs<V>GeoSearchStoreArgs. count(long count)By default all the matching items are returned.GeoSearchStoreArgs<V>GeoSearchStoreArgs. descending()UseDESCorder (from large to small).GeoSearchStoreArgs<V>GeoSearchStoreArgs. fromMember(V member)Use the position of the given existingmemberin the sorted set.Methods in io.quarkus.redis.datasource.geo with parameters of type GeoSearchStoreArgs Modifier and Type Method Description longGeoCommands. geosearchstore(K destination, K key, GeoSearchStoreArgs<V> args, boolean storeDist)Execute the command GEOSEARCHSTORE.io.smallrye.mutiny.Uni<Long>ReactiveGeoCommands. geosearchstore(K destination, K key, GeoSearchStoreArgs<V> args, boolean storeDist)Execute the command GEOSEARCHSTORE.io.smallrye.mutiny.Uni<Void>ReactiveTransactionalGeoCommands. geosearchstore(K destination, K key, GeoSearchStoreArgs<V> args, boolean storeDist)Execute the command GEOSEARCHSTORE.voidTransactionalGeoCommands. geosearchstore(K destination, K key, GeoSearchStoreArgs<V> args, boolean storeDist)Execute the command GEOSEARCHSTORE. -
Uses of GeoSearchStoreArgs in io.quarkus.redis.runtime.datasource
Methods in io.quarkus.redis.runtime.datasource with parameters of type GeoSearchStoreArgs Modifier and Type Method Description (package private) io.smallrye.mutiny.Uni<io.vertx.mutiny.redis.client.Response>AbstractGeoCommands. _geosearchstore(K destination, K key, GeoSearchStoreArgs<V> args, boolean storeDist)longBlockingGeoCommandsImpl. geosearchstore(K destination, K key, GeoSearchStoreArgs<V> args, boolean storeDist)voidBlockingTransactionalGeoCommandsImpl. geosearchstore(K destination, K key, GeoSearchStoreArgs<V> args, boolean storeDist)io.smallrye.mutiny.Uni<Long>ReactiveGeoCommandsImpl. geosearchstore(K destination, K key, GeoSearchStoreArgs<V> args, boolean storeDist)io.smallrye.mutiny.Uni<Void>ReactiveTransactionalGeoCommandsImpl. geosearchstore(K destination, K key, GeoSearchStoreArgs<V> args, boolean storeDist)
-