Uses of Interface
io.lettuce.core.GeoSearch.GeoRef
| 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.api.async |
Redis Cluster API for asynchronous executed commands.
|
| io.lettuce.core.cluster.api.sync |
Redis Cluster API for synchronous executed commands.
|
-
Uses of GeoSearch.GeoRef in io.lettuce.core
Methods in io.lettuce.core that return GeoSearch.GeoRef Modifier and Type Method Description static <K> GeoSearch.GeoRef<K>GeoSearch. fromCoordinates(double longitude, double latitude)static <K> GeoSearch.GeoRef<K>GeoSearch. fromMember(K member)Create aGeoSearch.GeoReffrom a Geo setmember.Methods in io.lettuce.core with parameters of type GeoSearch.GeoRef Modifier and Type Method Description RedisFuture<Set<V>>AbstractRedisAsyncCommands. geosearch(K key, GeoSearch.GeoRef<K> reference, GeoSearch.GeoPredicate predicate)RedisFuture<List<GeoWithin<V>>>AbstractRedisAsyncCommands. geosearch(K key, GeoSearch.GeoRef<K> reference, GeoSearch.GeoPredicate predicate, GeoArgs geoArgs)Flux<V>AbstractRedisReactiveCommands. geosearch(K key, GeoSearch.GeoRef<K> reference, GeoSearch.GeoPredicate predicate)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 GeoSearch.GeoRef in io.lettuce.core.api.async
Methods in io.lettuce.core.api.async with parameters of type GeoSearch.GeoRef Modifier and Type Method Description RedisFuture<Set<V>>RedisGeoAsyncCommands. geosearch(K key, GeoSearch.GeoRef<K> reference, GeoSearch.GeoPredicate predicate)Retrieve members selected by distance with the center ofreferencethe searchpredicate.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 GeoSearch.GeoRef in io.lettuce.core.api.reactive
Methods in io.lettuce.core.api.reactive with parameters of type GeoSearch.GeoRef Modifier and Type Method Description Flux<V>RedisGeoReactiveCommands. geosearch(K key, GeoSearch.GeoRef<K> reference, GeoSearch.GeoPredicate predicate)Retrieve members selected by distance with the center ofreferencethe searchpredicate.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 GeoSearch.GeoRef in io.lettuce.core.api.sync
Methods in io.lettuce.core.api.sync with parameters of type GeoSearch.GeoRef Modifier and Type Method Description Set<V>RedisGeoCommands. geosearch(K key, GeoSearch.GeoRef<K> reference, GeoSearch.GeoPredicate predicate)Retrieve members selected by distance with the center ofreferencethe searchpredicate.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 GeoSearch.GeoRef in io.lettuce.core.cluster.api.async
Methods in io.lettuce.core.cluster.api.async with parameters of type GeoSearch.GeoRef Modifier and Type Method Description AsyncExecutions<Set<V>>NodeSelectionGeoAsyncCommands. geosearch(K key, GeoSearch.GeoRef<K> reference, GeoSearch.GeoPredicate predicate)Retrieve members selected by distance with the center ofreferencethe searchpredicate.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 GeoSearch.GeoRef in io.lettuce.core.cluster.api.sync
Methods in io.lettuce.core.cluster.api.sync with parameters of type GeoSearch.GeoRef Modifier and Type Method Description Executions<Set<V>>NodeSelectionGeoCommands. geosearch(K key, GeoSearch.GeoRef<K> reference, GeoSearch.GeoPredicate predicate)Retrieve members selected by distance with the center ofreferencethe searchpredicate.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.