@ -36,6 +36,11 @@ public interface RLexSortedSet extends RLexSortedSetAsync, Set<String>, RExpirab
*/
Integer revRank(String o);
/**
* Read all values at once.
*
* @return
Collection<String> readAll();
int removeRangeTail(String fromElement, boolean fromInclusive);
@ -29,6 +29,11 @@ public interface RLexSortedSetAsync extends RCollectionAsync<String> {
Future<String> lastAsync();
Future<Collection<String>> readAllAsync();
Future<Integer> removeRangeAsync(String fromElement, boolean fromInclusive, String toElement, boolean toInclusive);