public class GeoRadiusStoreArgs<K> extends Object
GeoRadiusStoreArgs is a mutable object and instances should be used only once to avoid shared mutable state.| Modifier and Type | Class and Description |
|---|---|
static class |
GeoRadiusStoreArgs.Builder
Builder entry points for
GeoRadiusStoreArgs. |
| Constructor and Description |
|---|
GeoRadiusStoreArgs() |
| Modifier and Type | Method and Description |
|---|---|
GeoRadiusStoreArgs |
asc()
Sort results ascending.
|
<V> void |
build(CommandArgs<K,V> args) |
GeoRadiusStoreArgs |
desc()
Sort results descending.
|
K |
getStoreDistKey() |
K |
getStoreKey() |
GeoRadiusStoreArgs |
sort(GeoArgs.Sort sort)
Sort results.
|
GeoRadiusStoreArgs |
withCount(long count)
Limit results to
count entries. |
GeoRadiusStoreArgs |
withStore(K storeKey)
Store the resulting members with their location in the new Geo set
storeKey. |
GeoRadiusStoreArgs |
withStoreDist(K storeKey)
Store the resulting members with their distance in the sorted set
storeKey. |
public GeoRadiusStoreArgs withStore(K storeKey)
storeKey. Cannot be used together with
withStoreDist(Object).storeKey - the destination key.this GeoRadiusStoreArgs.public GeoRadiusStoreArgs withStoreDist(K storeKey)
storeKey. Cannot be used together with
withStore(Object).storeKey - the destination key.this GeoRadiusStoreArgs.public GeoRadiusStoreArgs withCount(long count)
count entries.count - number greater 0.this GeoRadiusStoreArgs.public GeoRadiusStoreArgs asc()
this GeoRadiusStoreArgs.public GeoRadiusStoreArgs desc()
this GeoRadiusStoreArgs.public K getStoreKey()
public K getStoreDistKey()
public GeoRadiusStoreArgs sort(GeoArgs.Sort sort)
sort - sort order, must not be nullthis GeoRadiusStoreArgs.public <V> void build(CommandArgs<K,V> args)
Copyright © 2018 lettuce.io. All rights reserved.