Uses of Class
io.lettuce.core.GeoArgs.Unit
| 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.Unit in io.lettuce.core
Methods in io.lettuce.core that return GeoArgs.Unit Modifier and Type Method Description static GeoArgs.UnitGeoArgs.Unit. valueOf(String name)Returns the enum constant of this type with the specified name.static GeoArgs.Unit[]GeoArgs.Unit. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in io.lettuce.core with parameters of type GeoArgs.Unit Modifier and Type Method Description static GeoSearch.GeoPredicateGeoSearch. byBox(double width, double height, GeoArgs.Unit unit)static GeoSearch.GeoPredicateGeoSearch. byRadius(double distance, GeoArgs.Unit unit)RedisFuture<Double>AbstractRedisAsyncCommands. geodist(K key, V from, V to, GeoArgs.Unit unit)Mono<Double>AbstractRedisReactiveCommands. geodist(K key, V from, V to, GeoArgs.Unit unit)RedisFuture<Set<V>>AbstractRedisAsyncCommands. georadius(K key, double longitude, double latitude, double distance, GeoArgs.Unit unit)RedisFuture<List<GeoWithin<V>>>AbstractRedisAsyncCommands. georadius(K key, double longitude, double latitude, double distance, GeoArgs.Unit unit, GeoArgs geoArgs)RedisFuture<Long>AbstractRedisAsyncCommands. georadius(K key, double longitude, double latitude, double distance, GeoArgs.Unit unit, GeoRadiusStoreArgs<K> geoRadiusStoreArgs)Flux<V>AbstractRedisReactiveCommands. georadius(K key, double longitude, double latitude, double distance, GeoArgs.Unit unit)Flux<GeoWithin<V>>AbstractRedisReactiveCommands. georadius(K key, double longitude, double latitude, double distance, GeoArgs.Unit unit, GeoArgs geoArgs)Mono<Long>AbstractRedisReactiveCommands. georadius(K key, double longitude, double latitude, double distance, GeoArgs.Unit unit, GeoRadiusStoreArgs<K> geoRadiusStoreArgs)protected RedisFuture<Set<V>>AbstractRedisAsyncCommands. georadius_ro(K key, double longitude, double latitude, double distance, GeoArgs.Unit unit)protected RedisFuture<List<GeoWithin<V>>>AbstractRedisAsyncCommands. georadius_ro(K key, double longitude, double latitude, double distance, GeoArgs.Unit unit, GeoArgs geoArgs)protected Flux<V>AbstractRedisReactiveCommands. georadius_ro(K key, double longitude, double latitude, double distance, GeoArgs.Unit unit)protected Flux<GeoWithin<V>>AbstractRedisReactiveCommands. georadius_ro(K key, double longitude, double latitude, double distance, GeoArgs.Unit unit, GeoArgs geoArgs)RedisFuture<Set<V>>AbstractRedisAsyncCommands. georadiusbymember(K key, V member, double distance, GeoArgs.Unit unit)RedisFuture<List<GeoWithin<V>>>AbstractRedisAsyncCommands. georadiusbymember(K key, V member, double distance, GeoArgs.Unit unit, GeoArgs geoArgs)RedisFuture<Long>AbstractRedisAsyncCommands. georadiusbymember(K key, V member, double distance, GeoArgs.Unit unit, GeoRadiusStoreArgs<K> geoRadiusStoreArgs)Flux<V>AbstractRedisReactiveCommands. georadiusbymember(K key, V member, double distance, GeoArgs.Unit unit)Flux<GeoWithin<V>>AbstractRedisReactiveCommands. georadiusbymember(K key, V member, double distance, GeoArgs.Unit unit, GeoArgs geoArgs)Mono<Long>AbstractRedisReactiveCommands. georadiusbymember(K key, V member, double distance, GeoArgs.Unit unit, GeoRadiusStoreArgs<K> geoRadiusStoreArgs)protected RedisFuture<Set<V>>AbstractRedisAsyncCommands. georadiusbymember_ro(K key, V member, double distance, GeoArgs.Unit unit)protected RedisFuture<List<GeoWithin<V>>>AbstractRedisAsyncCommands. georadiusbymember_ro(K key, V member, double distance, GeoArgs.Unit unit, GeoArgs geoArgs)protected Flux<V>AbstractRedisReactiveCommands. georadiusbymember_ro(K key, V member, double distance, GeoArgs.Unit unit)protected Flux<GeoWithin<V>>AbstractRedisReactiveCommands. georadiusbymember_ro(K key, V member, double distance, GeoArgs.Unit unit, GeoArgs geoArgs) -
Uses of GeoArgs.Unit in io.lettuce.core.api.async
Methods in io.lettuce.core.api.async with parameters of type GeoArgs.Unit Modifier and Type Method Description RedisFuture<Double>RedisGeoAsyncCommands. geodist(K key, V from, V to, GeoArgs.Unit unit)Retrieve distance between pointsfromandto.RedisFuture<Set<V>>RedisGeoAsyncCommands. georadius(K key, double longitude, double latitude, double distance, GeoArgs.Unit unit)Retrieve members selected by distance with the center oflongitudeandlatitude.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<Long>RedisGeoAsyncCommands. georadius(K key, double longitude, double latitude, double distance, GeoArgs.Unit unit, GeoRadiusStoreArgs<K> geoRadiusStoreArgs)Perform aRedisGeoAsyncCommands.georadius(Object, double, double, double, GeoArgs.Unit, GeoArgs)query and store the results in a sorted set.RedisFuture<Set<V>>RedisGeoAsyncCommands. georadiusbymember(K key, V member, double distance, GeoArgs.Unit unit)Retrieve members selected by distance with the center ofmember.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<Long>RedisGeoAsyncCommands. georadiusbymember(K key, V member, double distance, GeoArgs.Unit unit, GeoRadiusStoreArgs<K> geoRadiusStoreArgs)Perform aRedisGeoAsyncCommands.georadiusbymember(Object, Object, double, GeoArgs.Unit, GeoArgs)query and store the results in a sorted set. -
Uses of GeoArgs.Unit in io.lettuce.core.api.reactive
Methods in io.lettuce.core.api.reactive with parameters of type GeoArgs.Unit Modifier and Type Method Description Mono<Double>RedisGeoReactiveCommands. geodist(K key, V from, V to, GeoArgs.Unit unit)Retrieve distance between pointsfromandto.Flux<V>RedisGeoReactiveCommands. georadius(K key, double longitude, double latitude, double distance, GeoArgs.Unit unit)Retrieve members selected by distance with the center oflongitudeandlatitude.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.Mono<Long>RedisGeoReactiveCommands. georadius(K key, double longitude, double latitude, double distance, GeoArgs.Unit unit, GeoRadiusStoreArgs<K> geoRadiusStoreArgs)Perform aRedisGeoReactiveCommands.georadius(Object, double, double, double, GeoArgs.Unit, GeoArgs)query and store the results in a sorted set.Flux<V>RedisGeoReactiveCommands. georadiusbymember(K key, V member, double distance, GeoArgs.Unit unit)Retrieve members selected by distance with the center ofmember.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.Mono<Long>RedisGeoReactiveCommands. georadiusbymember(K key, V member, double distance, GeoArgs.Unit unit, GeoRadiusStoreArgs<K> geoRadiusStoreArgs)Perform aRedisGeoReactiveCommands.georadiusbymember(Object, Object, double, GeoArgs.Unit, GeoArgs)query and store the results in a sorted set. -
Uses of GeoArgs.Unit in io.lettuce.core.api.sync
Methods in io.lettuce.core.api.sync with parameters of type GeoArgs.Unit Modifier and Type Method Description DoubleRedisGeoCommands. geodist(K key, V from, V to, GeoArgs.Unit unit)Retrieve distance between pointsfromandto.Set<V>RedisGeoCommands. georadius(K key, double longitude, double latitude, double distance, GeoArgs.Unit unit)Retrieve members selected by distance with the center oflongitudeandlatitude.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.LongRedisGeoCommands. georadius(K key, double longitude, double latitude, double distance, GeoArgs.Unit unit, GeoRadiusStoreArgs<K> geoRadiusStoreArgs)Perform aRedisGeoCommands.georadius(Object, double, double, double, GeoArgs.Unit, GeoArgs)query and store the results in a sorted set.Set<V>RedisGeoCommands. georadiusbymember(K key, V member, double distance, GeoArgs.Unit unit)Retrieve members selected by distance with the center ofmember.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.LongRedisGeoCommands. georadiusbymember(K key, V member, double distance, GeoArgs.Unit unit, GeoRadiusStoreArgs<K> geoRadiusStoreArgs)Perform aRedisGeoCommands.georadiusbymember(Object, Object, double, GeoArgs.Unit, GeoArgs)query and store the results in a sorted set. -
Uses of GeoArgs.Unit in io.lettuce.core.cluster
Methods in io.lettuce.core.cluster with parameters of type GeoArgs.Unit Modifier and Type Method Description RedisFuture<Set<V>>RedisAdvancedClusterAsyncCommandsImpl. georadius(K key, double longitude, double latitude, double distance, GeoArgs.Unit unit)RedisFuture<List<GeoWithin<V>>>RedisAdvancedClusterAsyncCommandsImpl. georadius(K key, double longitude, double latitude, double distance, GeoArgs.Unit unit, GeoArgs geoArgs)Flux<V>RedisAdvancedClusterReactiveCommandsImpl. georadius(K key, double longitude, double latitude, double distance, GeoArgs.Unit unit)Flux<GeoWithin<V>>RedisAdvancedClusterReactiveCommandsImpl. georadius(K key, double longitude, double latitude, double distance, GeoArgs.Unit unit, GeoArgs geoArgs)RedisFuture<Set<V>>RedisClusterPubSubAsyncCommandsImpl. georadius(K key, double longitude, double latitude, double distance, GeoArgs.Unit unit)RedisFuture<List<GeoWithin<V>>>RedisClusterPubSubAsyncCommandsImpl. georadius(K key, double longitude, double latitude, double distance, GeoArgs.Unit unit, GeoArgs geoArgs)Flux<V>RedisClusterPubSubReactiveCommandsImpl. georadius(K key, double longitude, double latitude, double distance, GeoArgs.Unit unit)Flux<GeoWithin<V>>RedisClusterPubSubReactiveCommandsImpl. georadius(K key, double longitude, double latitude, double distance, GeoArgs.Unit unit, GeoArgs geoArgs)RedisFuture<Set<V>>RedisAdvancedClusterAsyncCommandsImpl. georadiusbymember(K key, V member, double distance, GeoArgs.Unit unit)RedisFuture<List<GeoWithin<V>>>RedisAdvancedClusterAsyncCommandsImpl. georadiusbymember(K key, V member, double distance, GeoArgs.Unit unit, GeoArgs geoArgs)Flux<V>RedisAdvancedClusterReactiveCommandsImpl. georadiusbymember(K key, V member, double distance, GeoArgs.Unit unit)Flux<GeoWithin<V>>RedisAdvancedClusterReactiveCommandsImpl. georadiusbymember(K key, V member, double distance, GeoArgs.Unit unit, GeoArgs geoArgs)RedisFuture<Set<V>>RedisClusterPubSubAsyncCommandsImpl. georadiusbymember(K key, V member, double distance, GeoArgs.Unit unit)RedisFuture<List<GeoWithin<V>>>RedisClusterPubSubAsyncCommandsImpl. georadiusbymember(K key, V member, double distance, GeoArgs.Unit unit, GeoArgs geoArgs)Flux<V>RedisClusterPubSubReactiveCommandsImpl. georadiusbymember(K key, V member, double distance, GeoArgs.Unit unit)Flux<GeoWithin<V>>RedisClusterPubSubReactiveCommandsImpl. georadiusbymember(K key, V member, double distance, GeoArgs.Unit unit, GeoArgs geoArgs) -
Uses of GeoArgs.Unit in io.lettuce.core.cluster.api.async
Methods in io.lettuce.core.cluster.api.async with parameters of type GeoArgs.Unit Modifier and Type Method Description AsyncExecutions<Double>NodeSelectionGeoAsyncCommands. geodist(K key, V from, V to, GeoArgs.Unit unit)Retrieve distance between pointsfromandto.AsyncExecutions<Set<V>>NodeSelectionGeoAsyncCommands. georadius(K key, double longitude, double latitude, double distance, GeoArgs.Unit unit)Retrieve members selected by distance with the center oflongitudeandlatitude.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<Long>NodeSelectionGeoAsyncCommands. georadius(K key, double longitude, double latitude, double distance, GeoArgs.Unit unit, GeoRadiusStoreArgs<K> geoRadiusStoreArgs)Perform aNodeSelectionGeoAsyncCommands.georadius(Object, double, double, double, GeoArgs.Unit, GeoArgs)query and store the results in a sorted set.AsyncExecutions<Set<V>>NodeSelectionGeoAsyncCommands. georadiusbymember(K key, V member, double distance, GeoArgs.Unit unit)Retrieve members selected by distance with the center ofmember.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<Long>NodeSelectionGeoAsyncCommands. georadiusbymember(K key, V member, double distance, GeoArgs.Unit unit, GeoRadiusStoreArgs<K> geoRadiusStoreArgs)Perform aNodeSelectionGeoAsyncCommands.georadiusbymember(Object, Object, double, GeoArgs.Unit, GeoArgs)query and store the results in a sorted set. -
Uses of GeoArgs.Unit in io.lettuce.core.cluster.api.sync
Methods in io.lettuce.core.cluster.api.sync with parameters of type GeoArgs.Unit Modifier and Type Method Description Executions<Double>NodeSelectionGeoCommands. geodist(K key, V from, V to, GeoArgs.Unit unit)Retrieve distance between pointsfromandto.Executions<Set<V>>NodeSelectionGeoCommands. georadius(K key, double longitude, double latitude, double distance, GeoArgs.Unit unit)Retrieve members selected by distance with the center oflongitudeandlatitude.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<Long>NodeSelectionGeoCommands. georadius(K key, double longitude, double latitude, double distance, GeoArgs.Unit unit, GeoRadiusStoreArgs<K> geoRadiusStoreArgs)Perform aNodeSelectionGeoCommands.georadius(Object, double, double, double, GeoArgs.Unit, GeoArgs)query and store the results in a sorted set.Executions<Set<V>>NodeSelectionGeoCommands. georadiusbymember(K key, V member, double distance, GeoArgs.Unit unit)Retrieve members selected by distance with the center ofmember.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<Long>NodeSelectionGeoCommands. georadiusbymember(K key, V member, double distance, GeoArgs.Unit unit, GeoRadiusStoreArgs<K> geoRadiusStoreArgs)Perform aNodeSelectionGeoCommands.georadiusbymember(Object, Object, double, GeoArgs.Unit, GeoArgs)query and store the results in a sorted set.