Uses of Class
io.quarkus.redis.datasource.SortArgs
-
Packages that use SortArgs Package Description io.quarkus.redis.datasource io.quarkus.redis.datasource.list io.quarkus.redis.datasource.set io.quarkus.redis.datasource.sortedset io.quarkus.redis.runtime.datasource -
-
Uses of SortArgs in io.quarkus.redis.datasource
Methods in io.quarkus.redis.datasource that return SortArgs Modifier and Type Method Description SortArgsSortArgs. alpha()When the list contains string values and you want to sort them lexicographically, use the ALPHA modifier.SortArgsSortArgs. ascending()UseASCorder (from small to large).SortArgsSortArgs. by(String by)Sets theBYpattern.SortArgsSortArgs. descending()UseDESCorder (from large to small).SortArgsSortArgs. get(String get)Adds aGEToption.SortArgsSortArgs. get(List<String> get)Sets theGEToption.SortArgsSortArgs. limit(long count)Sets the limit option with only the number of elements.SortArgsSortArgs. limit(long offset, long count)Sets the limit option using the offset and count.SortArgsSortArgs. limit(SortArgs.Limit limit)Sets the limit option. -
Uses of SortArgs in io.quarkus.redis.datasource.list
Methods in io.quarkus.redis.datasource.list with parameters of type SortArgs Modifier and Type Method Description List<V>ListCommands. sort(K key, SortArgs sortArguments)Execute the command SORT.io.smallrye.mutiny.Uni<List<V>>ReactiveListCommands. sort(K key, SortArgs sortArguments)Execute the command SORT.longListCommands. sortAndStore(K key, K destination, SortArgs sortArguments)Execute the command SORT with theSTOREoption.io.smallrye.mutiny.Uni<Long>ReactiveListCommands. sortAndStore(K key, K destination, SortArgs sortArguments)Execute the command SORT with theSTOREoption. -
Uses of SortArgs in io.quarkus.redis.datasource.set
Methods in io.quarkus.redis.datasource.set with parameters of type SortArgs Modifier and Type Method Description io.smallrye.mutiny.Uni<List<V>>ReactiveSetCommands. sort(K key, SortArgs sortArguments)Execute the command SORT.List<V>SetCommands. sort(K key, SortArgs sortArguments)Execute the command SORT.io.smallrye.mutiny.Uni<Long>ReactiveSetCommands. sortAndStore(K key, K destination, SortArgs sortArguments)Execute the command SORT with theSTOREoption.longSetCommands. sortAndStore(K key, K destination, SortArgs sortArguments)Execute the command SORT with theSTOREoption. -
Uses of SortArgs in io.quarkus.redis.datasource.sortedset
Methods in io.quarkus.redis.datasource.sortedset with parameters of type SortArgs Modifier and Type Method Description io.smallrye.mutiny.Uni<List<V>>ReactiveSortedSetCommands. sort(K key, SortArgs sortArguments)Execute the command SORT.List<V>SortedSetCommands. sort(K key, SortArgs sortArguments)Execute the command SORT.io.smallrye.mutiny.Uni<Long>ReactiveSortedSetCommands. sortAndStore(K key, K destination, SortArgs sortArguments)Execute the command SORT with theSTOREoption.longSortedSetCommands. sortAndStore(K key, K destination, SortArgs sortArguments)Execute the command SORT with theSTOREoption. -
Uses of SortArgs in io.quarkus.redis.runtime.datasource
Methods in io.quarkus.redis.runtime.datasource with parameters of type SortArgs Modifier and Type Method Description List<V>BlockingListCommandsImpl. sort(K key, SortArgs sortArguments)List<V>BlockingSetCommandsImpl. sort(K key, SortArgs sortArguments)List<V>BlockingSortedSetCommandsImpl. sort(K key, SortArgs sortArguments)io.smallrye.mutiny.Uni<List<V>>ReactiveSortable. sort(K key, SortArgs sortArguments)longBlockingListCommandsImpl. sortAndStore(K key, K destination, SortArgs sortArguments)longBlockingSetCommandsImpl. sortAndStore(K key, K destination, SortArgs sortArguments)longBlockingSortedSetCommandsImpl. sortAndStore(K key, K destination, SortArgs sortArguments)io.smallrye.mutiny.Uni<Long>ReactiveSortable. sortAndStore(K key, K destination, SortArgs args)
-