public class GeoRadiusStoreArgs<K> extends Object implements CompositeArgument
| Constructor and Description |
|---|
GeoRadiusStoreArgs() |
| Modifier and Type | Method and Description |
|---|---|
GeoRadiusStoreArgs |
asc()
Sort results ascending.
|
<K,V> void |
build(CommandArgs<K,V> args)
Build command arguments and contribute arguments to
CommandArgs. |
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.thispublic GeoRadiusStoreArgs withStoreDist(K storeKey)
storeKey. Cannot be used together with
withStore(Object).storeKey - the destination key.thispublic GeoRadiusStoreArgs withCount(long count)
count entries.count - number greater 0thispublic GeoRadiusStoreArgs asc()
thispublic GeoRadiusStoreArgs desc()
thispublic K getStoreKey()
public K getStoreDistKey()
public GeoRadiusStoreArgs sort(GeoArgs.Sort sort)
sort - sort order, must not be nullthispublic <K,V> void build(CommandArgs<K,V> args)
CompositeArgumentCommandArgs.
Implementing classes are required to implement this method. Depending on the command nature and configured arguments, this method may contribute arguments but is not required to add arguments if none are specified.
build in interface CompositeArgumentK - Key type.V - Value type.args - the command arguments, must not be null.Copyright © 2018 lettuce.io. All rights reserved.