Uses of Class
io.lettuce.core.GeoArgs
| Package | Description |
|---|---|
| io.lettuce.core |
The Redis client package containing
RedisClient for Redis Standalone and Redis Sentinel operations. |
| io.lettuce.core.api.async |
Standalone Redis API for asynchronous executed commands.
|
| io.lettuce.core.api.reactive |
Standalone Redis API for reactive command execution.
|
| io.lettuce.core.api.sync |
Standalone Redis API for synchronous executed commands.
|
| io.lettuce.core.cluster |
Client for Redis Cluster, see
RedisClusterClient. |
| io.lettuce.core.cluster.api.async |
Redis Cluster API for asynchronous executed commands.
|
| io.lettuce.core.cluster.api.sync |
Redis Cluster API for synchronous executed commands.
|
-
Uses of GeoArgs in io.lettuce.core
Methods in io.lettuce.core that return GeoArgs Modifier and Type Method Description GeoArgsGeoArgs. asc()Sort results ascending.static GeoArgsGeoArgs.Builder. coordinates()Creates newGeoArgswith WITHCOORD enabled.static GeoArgsGeoArgs.Builder. count(long count)Creates newGeoArgswith COUNT set.GeoArgsGeoArgs. desc()Sort results descending.static GeoArgsGeoArgs.Builder. distance()Creates newGeoArgswith WITHDIST enabled.static GeoArgsGeoArgs.Builder. full()Creates newGeoArgswith distance, coordinates and hash enabled.static GeoArgsGeoArgs.Builder. hash()Creates newGeoArgswith WITHHASH enabled.GeoArgsGeoArgs. sort(GeoArgs.Sort sort)Sort results.GeoArgsGeoArgs. withCoordinates()Request coordinates for results.GeoArgsGeoArgs. withCount(long count)Limit results tocountentries.GeoArgsGeoArgs. withCount(long count, boolean any)Limit results tocountentries.GeoArgsGeoArgs. withDistance()Request distance for results.GeoArgsGeoArgs. withHash()Request geohash for results.Methods in io.lettuce.core with parameters of type GeoArgs Modifier and Type Method Description RedisFuture<List<GeoWithin<V>>>AbstractRedisAsyncCommands. georadius(K key, double longitude, double latitude, double distance, GeoArgs.Unit unit, GeoArgs geoArgs)Flux<GeoWithin<V>>AbstractRedisReactiveCommands. georadius(K key, double longitude, double latitude, double distance, GeoArgs.Unit unit, GeoArgs geoArgs)protected RedisFuture<List<GeoWithin<V>>>AbstractRedisAsyncCommands. georadius_ro(K key, double longitude, double latitude, double distance, GeoArgs.Unit unit, GeoArgs geoArgs)protected Flux<GeoWithin<V>>AbstractRedisReactiveCommands. georadius_ro(K key, double longitude, double latitude, double distance, GeoArgs.Unit unit, GeoArgs geoArgs)RedisFuture<List<GeoWithin<V>>>AbstractRedisAsyncCommands. georadiusbymember(K key, V member, double distance, GeoArgs.Unit unit, GeoArgs geoArgs)Flux<GeoWithin<V>>AbstractRedisReactiveCommands. georadiusbymember(K key, V member, double distance, GeoArgs.Unit unit, GeoArgs geoArgs)protected RedisFuture<List<GeoWithin<V>>>AbstractRedisAsyncCommands. georadiusbymember_ro(K key, V member, double distance, GeoArgs.Unit unit, GeoArgs geoArgs)protected Flux<GeoWithin<V>>AbstractRedisReactiveCommands. georadiusbymember_ro(K key, V member, double distance, GeoArgs.Unit unit, GeoArgs geoArgs)RedisFuture<List<GeoWithin<V>>>AbstractRedisAsyncCommands. geosearch(K key, GeoSearch.GeoRef<K> reference, GeoSearch.GeoPredicate predicate, GeoArgs geoArgs)Flux<GeoWithin<V>>AbstractRedisReactiveCommands. geosearch(K key, GeoSearch.GeoRef<K> reference, GeoSearch.GeoPredicate predicate, GeoArgs geoArgs)RedisFuture<Long>AbstractRedisAsyncCommands. geosearchstore(K destination, K key, GeoSearch.GeoRef<K> reference, GeoSearch.GeoPredicate predicate, GeoArgs geoArgs, boolean storeDist)Mono<Long>AbstractRedisReactiveCommands. geosearchstore(K destination, K key, GeoSearch.GeoRef<K> reference, GeoSearch.GeoPredicate predicate, GeoArgs geoArgs, boolean storeDist) -
Uses of GeoArgs in io.lettuce.core.api.async
Methods in io.lettuce.core.api.async with parameters of type GeoArgs Modifier and Type Method Description RedisFuture<List<GeoWithin<V>>>RedisGeoAsyncCommands. georadius(K key, double longitude, double latitude, double distance, GeoArgs.Unit unit, GeoArgs geoArgs)Retrieve members selected by distance with the center oflongitudeandlatitude.RedisFuture<List<GeoWithin<V>>>RedisGeoAsyncCommands. georadiusbymember(K key, V member, double distance, GeoArgs.Unit unit, GeoArgs geoArgs)Retrieve members selected by distance with the center ofmember.RedisFuture<List<GeoWithin<V>>>RedisGeoAsyncCommands. geosearch(K key, GeoSearch.GeoRef<K> reference, GeoSearch.GeoPredicate predicate, GeoArgs geoArgs)Retrieve members selected by distance with the center ofreferencethe searchpredicate.RedisFuture<Long>RedisGeoAsyncCommands. geosearchstore(K destination, K key, GeoSearch.GeoRef<K> reference, GeoSearch.GeoPredicate predicate, GeoArgs geoArgs, boolean storeDist)Perform aRedisGeoAsyncCommands.geosearch(Object, GeoSearch.GeoRef, GeoSearch.GeoPredicate, GeoArgs)query and store the results in a sorted set. -
Uses of GeoArgs in io.lettuce.core.api.reactive
Methods in io.lettuce.core.api.reactive with parameters of type GeoArgs Modifier and Type Method Description Flux<GeoWithin<V>>RedisGeoReactiveCommands. georadius(K key, double longitude, double latitude, double distance, GeoArgs.Unit unit, GeoArgs geoArgs)Retrieve members selected by distance with the center oflongitudeandlatitude.Flux<GeoWithin<V>>RedisGeoReactiveCommands. georadiusbymember(K key, V member, double distance, GeoArgs.Unit unit, GeoArgs geoArgs)Retrieve members selected by distance with the center ofmember.Flux<GeoWithin<V>>RedisGeoReactiveCommands. geosearch(K key, GeoSearch.GeoRef<K> reference, GeoSearch.GeoPredicate predicate, GeoArgs geoArgs)Retrieve members selected by distance with the center ofreferencethe searchpredicate.Mono<Long>RedisGeoReactiveCommands. geosearchstore(K destination, K key, GeoSearch.GeoRef<K> reference, GeoSearch.GeoPredicate predicate, GeoArgs geoArgs, boolean storeDist)Perform aRedisGeoReactiveCommands.geosearch(Object, GeoSearch.GeoRef, GeoSearch.GeoPredicate, GeoArgs)query and store the results in a sorted set. -
Uses of GeoArgs in io.lettuce.core.api.sync
Methods in io.lettuce.core.api.sync with parameters of type GeoArgs Modifier and Type Method Description List<GeoWithin<V>>RedisGeoCommands. georadius(K key, double longitude, double latitude, double distance, GeoArgs.Unit unit, GeoArgs geoArgs)Retrieve members selected by distance with the center oflongitudeandlatitude.List<GeoWithin<V>>RedisGeoCommands. georadiusbymember(K key, V member, double distance, GeoArgs.Unit unit, GeoArgs geoArgs)Retrieve members selected by distance with the center ofmember.List<GeoWithin<V>>RedisGeoCommands. geosearch(K key, GeoSearch.GeoRef<K> reference, GeoSearch.GeoPredicate predicate, GeoArgs geoArgs)Retrieve members selected by distance with the center ofreferencethe searchpredicate.LongRedisGeoCommands. geosearchstore(K destination, K key, GeoSearch.GeoRef<K> reference, GeoSearch.GeoPredicate predicate, GeoArgs geoArgs, boolean storeDist)Perform aRedisGeoCommands.geosearch(Object, GeoSearch.GeoRef, GeoSearch.GeoPredicate, GeoArgs)query and store the results in a sorted set. -
Uses of GeoArgs in io.lettuce.core.cluster
Methods in io.lettuce.core.cluster with parameters of type GeoArgs Modifier and Type Method Description RedisFuture<List<GeoWithin<V>>>RedisAdvancedClusterAsyncCommandsImpl. georadius(K key, double longitude, double latitude, double distance, GeoArgs.Unit unit, GeoArgs geoArgs)Flux<GeoWithin<V>>RedisAdvancedClusterReactiveCommandsImpl. georadius(K key, double longitude, double latitude, double distance, GeoArgs.Unit unit, GeoArgs geoArgs)RedisFuture<List<GeoWithin<V>>>RedisClusterPubSubAsyncCommandsImpl. georadius(K key, double longitude, double latitude, double distance, GeoArgs.Unit unit, GeoArgs geoArgs)Flux<GeoWithin<V>>RedisClusterPubSubReactiveCommandsImpl. georadius(K key, double longitude, double latitude, double distance, GeoArgs.Unit unit, GeoArgs geoArgs)RedisFuture<List<GeoWithin<V>>>RedisAdvancedClusterAsyncCommandsImpl. georadiusbymember(K key, V member, double distance, GeoArgs.Unit unit, GeoArgs geoArgs)Flux<GeoWithin<V>>RedisAdvancedClusterReactiveCommandsImpl. georadiusbymember(K key, V member, double distance, GeoArgs.Unit unit, GeoArgs geoArgs)RedisFuture<List<GeoWithin<V>>>RedisClusterPubSubAsyncCommandsImpl. georadiusbymember(K key, V member, double distance, GeoArgs.Unit unit, GeoArgs geoArgs)Flux<GeoWithin<V>>RedisClusterPubSubReactiveCommandsImpl. georadiusbymember(K key, V member, double distance, GeoArgs.Unit unit, GeoArgs geoArgs) -
Uses of GeoArgs in io.lettuce.core.cluster.api.async
Methods in io.lettuce.core.cluster.api.async with parameters of type GeoArgs Modifier and Type Method Description AsyncExecutions<List<GeoWithin<V>>>NodeSelectionGeoAsyncCommands. georadius(K key, double longitude, double latitude, double distance, GeoArgs.Unit unit, GeoArgs geoArgs)Retrieve members selected by distance with the center oflongitudeandlatitude.AsyncExecutions<List<GeoWithin<V>>>NodeSelectionGeoAsyncCommands. georadiusbymember(K key, V member, double distance, GeoArgs.Unit unit, GeoArgs geoArgs)Retrieve members selected by distance with the center ofmember.AsyncExecutions<List<GeoWithin<V>>>NodeSelectionGeoAsyncCommands. geosearch(K key, GeoSearch.GeoRef<K> reference, GeoSearch.GeoPredicate predicate, GeoArgs geoArgs)Retrieve members selected by distance with the center ofreferencethe searchpredicate.AsyncExecutions<Long>NodeSelectionGeoAsyncCommands. geosearchstore(K destination, K key, GeoSearch.GeoRef<K> reference, GeoSearch.GeoPredicate predicate, GeoArgs geoArgs, boolean storeDist)Perform aNodeSelectionGeoAsyncCommands.geosearch(Object, GeoSearch.GeoRef, GeoSearch.GeoPredicate, GeoArgs)query and store the results in a sorted set. -
Uses of GeoArgs in io.lettuce.core.cluster.api.sync
Methods in io.lettuce.core.cluster.api.sync with parameters of type GeoArgs Modifier and Type Method Description Executions<List<GeoWithin<V>>>NodeSelectionGeoCommands. georadius(K key, double longitude, double latitude, double distance, GeoArgs.Unit unit, GeoArgs geoArgs)Retrieve members selected by distance with the center oflongitudeandlatitude.Executions<List<GeoWithin<V>>>NodeSelectionGeoCommands. georadiusbymember(K key, V member, double distance, GeoArgs.Unit unit, GeoArgs geoArgs)Retrieve members selected by distance with the center ofmember.Executions<List<GeoWithin<V>>>NodeSelectionGeoCommands. geosearch(K key, GeoSearch.GeoRef<K> reference, GeoSearch.GeoPredicate predicate, GeoArgs geoArgs)Retrieve members selected by distance with the center ofreferencethe searchpredicate.Executions<Long>NodeSelectionGeoCommands. geosearchstore(K destination, K key, GeoSearch.GeoRef<K> reference, GeoSearch.GeoPredicate predicate, GeoArgs geoArgs, boolean storeDist)Perform aNodeSelectionGeoCommands.geosearch(Object, GeoSearch.GeoRef, GeoSearch.GeoPredicate, GeoArgs)query and store the results in a sorted set.