Interface RScoredSortedSet<V>
-
- Type Parameters:
V- object type
- All Superinterfaces:
Iterable<V>,RExpirable,RExpirableAsync,RObject,RObjectAsync,RScoredSortedSetAsync<V>,RSortable<Set<V>>,RSortableAsync<Set<V>>
- All Known Subinterfaces:
RGeo<V>
- All Known Implementing Classes:
RedissonGeo,RedissonLexSortedSet,RedissonScoredSortedSet
public interface RScoredSortedSet<V> extends RScoredSortedSetAsync<V>, Iterable<V>, RExpirable, RSortable<Set<V>>
Set containing elements sorted by score.- Author:
- Nikita Koksharov
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classRScoredSortedSet.Aggregate
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanadd(double score, V object)Adds element to this set, overrides previous score if it has been already added.intaddAll(Map<V,Double> objects)Adds all elements contained in the specified map to this sorted set.IntegeraddAndGetRank(double score, V object)Adds element to this set, overrides previous score if it has been already added.IntegeraddAndGetRevRank(double score, V object)Adds element to this set, overrides previous score if it has been already added.List<Integer>addAndGetRevRank(Map<? extends V,Double> map)Adds elements to this set, overrides previous score if it has been already added.booleanaddIfExists(double score, V object)Adds element to this set only if it's already exists.booleanaddIfGreater(double score, V object)Adds element to this set only if new score greater than current score of existed element.booleanaddIfLess(double score, V object)Adds element to this set only if new score less than current score of existed element.DoubleaddScore(V element, Number value)Increases score of specified element by value.IntegeraddScoreAndGetRank(V object, Number value)Adds score to element and returns its rankIntegeraddScoreAndGetRevRank(V object, Number value)Adds score to element and returns its reverse rankvoidclear()Removes all elements of this sorted set.booleancontains(Object o)Returnstrueif this sorted set contains encoded state of the specified element.booleancontainsAll(Collection<?> c)Returnstrueif this sorted set contains all of the elements in encoded state in the specified collection.intcount(double startScore, boolean startScoreInclusive, double endScore, boolean endScoreInclusive)Returns the number of elements with a score betweenstartScoreandendScore.intdiff(String... names)Diff provided ScoredSortedSets and store result to current ScoredSortedSetCollection<ScoredEntry<V>>entryRange(double startScore, boolean startScoreInclusive, double endScore, boolean endScoreInclusive)Returns all entries (value and its score) betweenstartScoreandendScore.Collection<ScoredEntry<V>>entryRange(double startScore, boolean startScoreInclusive, double endScore, boolean endScoreInclusive, int offset, int count)Returns all entries (value and its score) betweenstartScoreandendScore.Collection<ScoredEntry<V>>entryRange(int startIndex, int endIndex)Returns entries (value and its score) by rank range.Collection<ScoredEntry<V>>entryRangeReversed(double startScore, boolean startScoreInclusive, double endScore, boolean endScoreInclusive)Returns all entries (value and its score) betweenstartScoreandendScorein reversed order.Collection<ScoredEntry<V>>entryRangeReversed(double startScore, boolean startScoreInclusive, double endScore, boolean endScoreInclusive, int offset, int count)Returns all entries (value and its score) betweenstartScoreandendScorein reversed order.Collection<ScoredEntry<V>>entryRangeReversed(int startIndex, int endIndex)Returns entries (value and its score) by rank range in reverse order.Vfirst()Returns the head element ornullif this sorted set is empty.DoublefirstScore()Returns score of the tail element or returnsnullif this sorted set is empty.List<Double>getScore(List<V> elements)Returns scores of elements.DoublegetScore(V o)Returns score of element ornullif it doesn't exist.intintersection(String... names)Intersect provided ScoredSortedSets and store result to current ScoredSortedSetintintersection(Map<String,Double> nameWithWeight)Intersect provided ScoredSortedSets mapped to weight multiplier and store result to current ScoredSortedSetintintersection(RScoredSortedSet.Aggregate aggregate, String... names)Intersect provided ScoredSortedSets with defined aggregation method and store result to current ScoredSortedSetintintersection(RScoredSortedSet.Aggregate aggregate, Map<String,Double> nameWithWeight)Intersect provided ScoredSortedSets mapped to weight multiplier with defined aggregation method and store result to current ScoredSortedSetbooleanisEmpty()Returnstrueif this set is emptyIterator<V>iterator(int count)Returns an iterator over elements in this set.Iterator<V>iterator(String pattern)Returns an iterator over elements in this set.Iterator<V>iterator(String pattern, int count)Returns an iterator over elements in this set.Vlast()Returns the tail element ornullif this sorted set is empty.DoublelastScore()Returns score of the head element or returnsnullif this sorted set is empty.<KOut,VOut>
RCollectionMapReduce<V,KOut,VOut>mapReduce()ReturnsRMapReduceobject associated with this objectVpollFirst()Removes and returns the head element ornullif this sorted set is empty.Collection<V>pollFirst(int count)Removes and returns the head elements of this sorted set.VpollFirst(long timeout, TimeUnit unit)Removes and returns the head element ornullif this sorted set is empty.VpollFirstFromAny(long timeout, TimeUnit unit, String... queueNames)Removes and returns first available head element of any sorted set, waiting up to the specified wait time if necessary for an element to become available in any of defined sorted sets including this one.VpollLast()Removes and returns the tail element ornullif this sorted set is empty.Collection<V>pollLast(int count)Removes and returns the tail elements of this sorted set.VpollLast(long timeout, TimeUnit unit)Removes and returns the tail element ornullif this sorted set is empty.VpollLastFromAny(long timeout, TimeUnit unit, String... queueNames)Removes and returns first available tail element of any sorted set, waiting up to the specified wait time if necessary for an element to become available in any of defined sorted sets including this one.Vrandom()Returns random element from this sorted setCollection<V>random(int count)Returns random elements from this sorted set limited bycountMap<V,Double>randomEntries(int count)Returns random entries from this sorted set limited bycount.intrangeTo(String destName, double startScore, boolean startScoreInclusive, double endScore, boolean endScoreInclusive)Stores to defined ScoredSortedSet values betweenstartScoreandendScore.intrangeTo(String destName, double startScore, boolean startScoreInclusive, double endScore, boolean endScoreInclusive, int offset, int count)Stores to defined ScoredSortedSet values betweenstartScoreandendScore.intrangeTo(String destName, int startIndex, int endIndex)Stores to defined ScoredSortedSet values by rank range.Integerrank(V o)Returns rank of value, with the scores ordered from low to high.Collection<V>readAll()Read all values at once.Collection<V>readDiff(String... names)Diff ScoredSortedSets specified by name with current ScoredSortedSet without state change.Collection<V>readIntersection(String... names)Intersect provided ScoredSortedSets with current ScoredSortedSet without state changeCollection<V>readIntersection(Map<String,Double> nameWithWeight)Intersect provided ScoredSortedSets mapped to weight multiplier with current ScoredSortedSet without state changeCollection<V>readIntersection(RScoredSortedSet.Aggregate aggregate, String... names)Intersect provided ScoredSortedSets with current ScoredSortedSet using defined aggregation method without state changeCollection<V>readIntersection(RScoredSortedSet.Aggregate aggregate, Map<String,Double> nameWithWeight)Intersect provided ScoredSortedSets mapped to weight multiplier with current ScoredSortedSet using defined aggregation method without state changeCollection<V>readUnion(String... names)Union ScoredSortedSets specified by name with current ScoredSortedSet without state change.Collection<V>readUnion(Map<String,Double> nameWithWeight)Union provided ScoredSortedSets mapped to weight multiplier and current ScoredSortedSet without state change.Collection<V>readUnion(RScoredSortedSet.Aggregate aggregate, String... names)Union ScoredSortedSets specified by name with defined aggregation method and current ScoredSortedSet without state change.Collection<V>readUnion(RScoredSortedSet.Aggregate aggregate, Map<String,Double> nameWithWeight)Union provided ScoredSortedSets mapped to weight multiplier with defined aggregation method and current ScoredSortedSet without state changebooleanremove(Object o)Removes a single instance of the specified element from this sorted set, if it is present.booleanremoveAll(Collection<?> c)Removes all of this sorted set's elements that are also contained in the specified collection.intremoveRangeByRank(int startIndex, int endIndex)Removes values by rank range.intremoveRangeByScore(double startScore, boolean startScoreInclusive, double endScore, boolean endScoreInclusive)Removes values by score range.booleanretainAll(Collection<?> c)Retains only the elements in this sorted set that are contained in the specified collection.intrevRangeTo(String destName, double startScore, boolean startScoreInclusive, double endScore, boolean endScoreInclusive)Stores to defined ScoredSortedSet values in reversed order betweenstartScoreandendScore.intrevRangeTo(String destName, double startScore, boolean startScoreInclusive, double endScore, boolean endScoreInclusive, int offset, int count)Stores to defined ScoredSortedSet values in reversed order betweenstartScoreandendScore.intrevRangeTo(String destName, int startIndex, int endIndex)Stores to defined ScoredSortedSet values in reversed order by rank range.List<Integer>revRank(Collection<V> elements)Returns ranks of elements, with the scores ordered from high to low.IntegerrevRank(V o)Returns rank of value, with the scores ordered from high to low.intsize()Returns size of this set.Stream<V>stream()Returns stream of elements in this set.Stream<V>stream(int count)Returns stream of elements in this set.Stream<V>stream(String pattern)Returns stream of elements in this set.Stream<V>stream(String pattern, int count)Returns stream of elements in this set.intsubscribeOnFirstElements(Consumer<V> consumer)Subscribes on first elements appeared in this set.intsubscribeOnLastElements(Consumer<V> consumer)Subscribes on last elements appeared in this set.VtakeFirst()Removes and returns the head element waiting if necessary for an element to become available.VtakeLast()Removes and returns the tail element waiting if necessary for an element to become available.Object[]toArray()Returns this sorted set in array of Object type.<T> T[]toArray(T[] a)Returns this sorted set in array of defined type.booleantryAdd(double score, V object)Adds element to this set only if has not been added before.intunion(String... names)Union provided ScoredSortedSets and store result to current ScoredSortedSetintunion(Map<String,Double> nameWithWeight)Union provided ScoredSortedSets mapped to weight multiplier and store result to current ScoredSortedSetintunion(RScoredSortedSet.Aggregate aggregate, String... names)Union provided ScoredSortedSets with defined aggregation method and store result to current ScoredSortedSetintunion(RScoredSortedSet.Aggregate aggregate, Map<String,Double> nameWithWeight)Union provided ScoredSortedSets mapped to weight multiplier with defined aggregation method and store result to current ScoredSortedSetvoidunsubscribe(int listenerId)Un-subscribes defined listener.Collection<V>valueRange(double startScore, boolean startScoreInclusive, double endScore, boolean endScoreInclusive)Returns all values betweenstartScoreandendScore.Collection<V>valueRange(double startScore, boolean startScoreInclusive, double endScore, boolean endScoreInclusive, int offset, int count)Returns all values betweenstartScoreandendScore.Collection<V>valueRange(int startIndex, int endIndex)Returns values by rank range.Collection<V>valueRangeReversed(double startScore, boolean startScoreInclusive, double endScore, boolean endScoreInclusive)Returns all values betweenstartScoreandendScorein reversed order.Collection<V>valueRangeReversed(double startScore, boolean startScoreInclusive, double endScore, boolean endScoreInclusive, int offset, int count)Returns all values betweenstartScoreandendScorein reversed order.Collection<V>valueRangeReversed(int startIndex, int endIndex)Returns values by rank range in reverse order.-
Methods inherited from interface java.lang.Iterable
forEach, iterator, spliterator
-
Methods inherited from interface org.redisson.api.RExpirable
clearExpire, expire, expire, expireAt, expireAt, remainTimeToLive
-
Methods inherited from interface org.redisson.api.RExpirableAsync
clearExpireAsync, expireAsync, expireAsync, expireAtAsync, expireAtAsync, remainTimeToLiveAsync
-
Methods inherited from interface org.redisson.api.RObject
addListener, copy, delete, dump, getCodec, getIdleTime, getName, isExists, migrate, move, removeListener, rename, renamenx, restore, restore, restoreAndReplace, restoreAndReplace, sizeInMemory, touch, unlink
-
Methods inherited from interface org.redisson.api.RObjectAsync
addListenerAsync, copyAsync, deleteAsync, dumpAsync, getIdleTimeAsync, isExistsAsync, migrateAsync, moveAsync, removeListenerAsync, renameAsync, renamenxAsync, restoreAndReplaceAsync, restoreAndReplaceAsync, restoreAsync, restoreAsync, sizeInMemoryAsync, touchAsync, unlinkAsync
-
Methods inherited from interface org.redisson.api.RScoredSortedSetAsync
addAllAsync, addAndGetRankAsync, addAndGetRevRankAsync, addAndGetRevRankAsync, addAsync, addIfExistsAsync, addIfGreaterAsync, addIfLessAsync, addScoreAndGetRankAsync, addScoreAndGetRevRankAsync, addScoreAsync, containsAllAsync, containsAsync, countAsync, diffAsync, entryRangeAsync, entryRangeAsync, entryRangeAsync, entryRangeReversedAsync, entryRangeReversedAsync, entryRangeReversedAsync, firstAsync, firstScoreAsync, getScoreAsync, getScoreAsync, intersectionAsync, intersectionAsync, intersectionAsync, intersectionAsync, lastAsync, lastScoreAsync, pollFirstAsync, pollFirstAsync, pollFirstAsync, pollFirstFromAnyAsync, pollLastAsync, pollLastAsync, pollLastAsync, pollLastFromAnyAsync, randomAsync, randomAsync, randomEntriesAsync, rangeToAsync, rangeToAsync, rangeToAsync, rankAsync, readAllAsync, readDiffAsync, readIntersectionAsync, readIntersectionAsync, readIntersectionAsync, readIntersectionAsync, readUnionAsync, readUnionAsync, readUnionAsync, readUnionAsync, removeAllAsync, removeAsync, removeRangeByRankAsync, removeRangeByScoreAsync, retainAllAsync, revRangeToAsync, revRangeToAsync, revRangeToAsync, revRankAsync, revRankAsync, sizeAsync, takeFirstAsync, takeLastAsync, tryAddAsync, unionAsync, unionAsync, unionAsync, unionAsync, valueRangeAsync, valueRangeAsync, valueRangeAsync, valueRangeReversedAsync, valueRangeReversedAsync, valueRangeReversedAsync
-
Methods inherited from interface org.redisson.api.RSortable
readSort, readSort, readSort, readSort, readSort, readSort, readSortAlpha, readSortAlpha, readSortAlpha, readSortAlpha, readSortAlpha, readSortAlpha, sortTo, sortTo, sortTo, sortTo, sortTo, sortTo
-
Methods inherited from interface org.redisson.api.RSortableAsync
readSortAlphaAsync, readSortAlphaAsync, readSortAlphaAsync, readSortAlphaAsync, readSortAlphaAsync, readSortAlphaAsync, readSortAsync, readSortAsync, readSortAsync, readSortAsync, readSortAsync, readSortAsync, sortToAsync, sortToAsync, sortToAsync, sortToAsync, sortToAsync, sortToAsync
-
-
-
-
Method Detail
-
mapReduce
<KOut,VOut> RCollectionMapReduce<V,KOut,VOut> mapReduce()
ReturnsRMapReduceobject associated with this object- Type Parameters:
KOut- output keyVOut- output value- Returns:
- MapReduce instance
-
pollLastFromAny
V pollLastFromAny(long timeout, TimeUnit unit, String... queueNames)
Removes and returns first available tail element of any sorted set, waiting up to the specified wait time if necessary for an element to become available in any of defined sorted sets including this one.Requires Redis 5.0.0 and higher.
- Parameters:
queueNames- - names of queuetimeout- how long to wait before giving up, in units ofunitunit- aTimeUnitdetermining how to interpret thetimeoutparameter- Returns:
- the tail element, or
nullif all sorted sets are empty
-
pollFirstFromAny
V pollFirstFromAny(long timeout, TimeUnit unit, String... queueNames)
Removes and returns first available head element of any sorted set, waiting up to the specified wait time if necessary for an element to become available in any of defined sorted sets including this one.Requires Redis 5.0.0 and higher.
- Parameters:
queueNames- - names of queuetimeout- how long to wait before giving up, in units ofunitunit- aTimeUnitdetermining how to interpret thetimeoutparameter- Returns:
- the head element, or
nullif all sorted sets are empty
-
takeFirst
V takeFirst()
Removes and returns the head element waiting if necessary for an element to become available.- Returns:
- the head element
-
takeLast
V takeLast()
Removes and returns the tail element waiting if necessary for an element to become available.- Returns:
- the tail element
-
subscribeOnFirstElements
int subscribeOnFirstElements(Consumer<V> consumer)
Subscribes on first elements appeared in this set. Continuously invokesRScoredSortedSetAsync.takeFirstAsync()method to get a new element.- Parameters:
consumer- - queue elements listener- Returns:
- listenerId - id of listener
-
subscribeOnLastElements
int subscribeOnLastElements(Consumer<V> consumer)
Subscribes on last elements appeared in this set. Continuously invokesRScoredSortedSetAsync.takeLastAsync()method to get a new element.- Parameters:
consumer- - queue elements listener- Returns:
- listenerId - id of listener
-
unsubscribe
void unsubscribe(int listenerId)
Un-subscribes defined listener.- Parameters:
listenerId- - id of listener
-
pollFirst
V pollFirst(long timeout, TimeUnit unit)
Removes and returns the head element ornullif this sorted set is empty.- Parameters:
timeout- how long to wait before giving up, in units ofunitunit- aTimeUnitdetermining how to interpret thetimeoutparameter- Returns:
- the head element,
or
nullif this sorted set is empty
-
pollLast
V pollLast(long timeout, TimeUnit unit)
Removes and returns the tail element ornullif this sorted set is empty.- Parameters:
timeout- how long to wait before giving up, in units ofunitunit- aTimeUnitdetermining how to interpret thetimeoutparameter- Returns:
- the tail element or
nullif this sorted set is empty
-
pollFirst
Collection<V> pollFirst(int count)
Removes and returns the head elements of this sorted set.- Parameters:
count- - elements amount- Returns:
- the head elements of this sorted set
-
pollLast
Collection<V> pollLast(int count)
Removes and returns the tail elements of this sorted set.- Parameters:
count- - elements amount- Returns:
- the tail elements of this sorted set
-
pollFirst
V pollFirst()
Removes and returns the head element ornullif this sorted set is empty.- Returns:
- the head element,
or
nullif this sorted set is empty
-
pollLast
V pollLast()
Removes and returns the tail element ornullif this sorted set is empty.- Returns:
- the tail element or
nullif this sorted set is empty
-
first
V first()
Returns the head element ornullif this sorted set is empty.- Returns:
- the head element or
nullif this sorted set is empty
-
last
V last()
Returns the tail element ornullif this sorted set is empty.- Returns:
- the tail element or
nullif this sorted set is empty
-
firstScore
Double firstScore()
Returns score of the tail element or returnsnullif this sorted set is empty.- Returns:
- the tail element or
nullif this sorted set is empty
-
lastScore
Double lastScore()
Returns score of the head element or returnsnullif this sorted set is empty.- Returns:
- the tail element or
nullif this sorted set is empty
-
random
V random()
Returns random element from this sorted setRequires Redis 6.2.0 and higher.
- Returns:
- random element
-
random
Collection<V> random(int count)
Returns random elements from this sorted set limited bycountRequires Redis 6.2.0 and higher.
- Parameters:
count- - values amount to return- Returns:
- random elements
-
randomEntries
Map<V,Double> randomEntries(int count)
Returns random entries from this sorted set limited bycount. Each map entry uses element as key and score as value.Requires Redis 6.2.0 and higher.
- Parameters:
count- - entries amount to return- Returns:
- random entries
-
addAll
int addAll(Map<V,Double> objects)
Adds all elements contained in the specified map to this sorted set. Map contains of score mapped by object.- Parameters:
objects- - map of elements to add- Returns:
- amount of added elements, not including already existing in this sorted set
-
removeRangeByScore
int removeRangeByScore(double startScore, boolean startScoreInclusive, double endScore, boolean endScoreInclusive)Removes values by score range.- Parameters:
startScore- - start score. UseDouble.POSITIVE_INFINITYorDouble.NEGATIVE_INFINITYto define infinity numbersstartScoreInclusive- - start score inclusiveendScore- - end score UseDouble.POSITIVE_INFINITYorDouble.NEGATIVE_INFINITYto define infinity numbersendScoreInclusive- - end score inclusive- Returns:
- number of elements removed
-
removeRangeByRank
int removeRangeByRank(int startIndex, int endIndex)Removes values by rank range. Indexes are zero based.-1means the highest score,-2means the second highest score.- Parameters:
startIndex- - start indexendIndex- - end index- Returns:
- number of elements removed
-
rank
Integer rank(V o)
Returns rank of value, with the scores ordered from low to high.- Parameters:
o- - object- Returns:
- rank or
nullif value does not exist
-
revRank
Integer revRank(V o)
Returns rank of value, with the scores ordered from high to low.- Parameters:
o- - object- Returns:
- rank or
nullif value does not exist
-
revRank
List<Integer> revRank(Collection<V> elements)
Returns ranks of elements, with the scores ordered from high to low.- Parameters:
elements- - elements- Returns:
- ranks or
nullif value does not exist
-
getScore
Double getScore(V o)
Returns score of element ornullif it doesn't exist.- Parameters:
o- - element- Returns:
- score
-
getScore
List<Double> getScore(List<V> elements)
Returns scores of elements.- Parameters:
elements- - elements- Returns:
- element scores
-
add
boolean add(double score, V object)Adds element to this set, overrides previous score if it has been already added.- Parameters:
score- - object scoreobject- - object itself- Returns:
trueif element has added andfalseif not.
-
addAndGetRank
Integer addAndGetRank(double score, V object)
Adds element to this set, overrides previous score if it has been already added. Finally return the rank of the item- Parameters:
score- - object scoreobject- - object itself- Returns:
- rank
-
addAndGetRevRank
Integer addAndGetRevRank(double score, V object)
Adds element to this set, overrides previous score if it has been already added. Finally return the reverse rank of the item- Parameters:
score- - object scoreobject- - object itself- Returns:
- reverse rank
-
addAndGetRevRank
List<Integer> addAndGetRevRank(Map<? extends V,Double> map)
Adds elements to this set, overrides previous score if it has been already added. Finally returns reverse rank list of the items- Parameters:
map- - map of object and scores, make sure to use an ordered map- Returns:
- collection of reverse ranks
-
tryAdd
boolean tryAdd(double score, V object)Adds element to this set only if has not been added before.Requires Redis 3.0.2 and higher.
- Parameters:
score- - object scoreobject- - object itself- Returns:
trueif element added andfalseif not.
-
addIfExists
boolean addIfExists(double score, V object)Adds element to this set only if it's already exists.Requires Redis 3.0.2 and higher.
- Parameters:
score- - object scoreobject- - object itself- Returns:
trueif element added andfalseif not.
-
addIfLess
boolean addIfLess(double score, V object)Adds element to this set only if new score less than current score of existed element.Requires Redis 6.2.0 and higher.
- Parameters:
score- - object scoreobject- - object itself- Returns:
trueif element added andfalseif not.
-
addIfGreater
boolean addIfGreater(double score, V object)Adds element to this set only if new score greater than current score of existed element.Requires Redis 6.2.0 and higher.
- Parameters:
score- - object scoreobject- - object itself- Returns:
trueif element added andfalseif not.
-
size
int size()
Returns size of this set.- Returns:
- size
-
isEmpty
boolean isEmpty()
Returnstrueif this set is empty- Returns:
trueif empty
-
stream
Stream<V> stream()
Returns stream of elements in this set. Elements are loaded in batch. Batch size is 10.- Returns:
- stream of elements
-
stream
Stream<V> stream(String pattern)
Returns stream of elements in this set. Ifpatternis not null then only elements match this pattern are loaded.- Parameters:
pattern- - search pattern- Returns:
- stream of elements
-
stream
Stream<V> stream(int count)
Returns stream of elements in this set. Elements are loaded in batch. Batch size is defined bycountparam.- Parameters:
count- - size of elements batch- Returns:
- stream of elements
-
stream
Stream<V> stream(String pattern, int count)
Returns stream of elements in this set. Elements are loaded in batch. Batch size is defined bycountparam. If pattern is not null then only elements match this pattern are loaded.- Parameters:
pattern- - search patterncount- - size of elements batch- Returns:
- stream of elements
-
iterator
Iterator<V> iterator(String pattern)
Returns an iterator over elements in this set. Ifpatternis not null then only elements match this pattern are loaded.- Parameters:
pattern- - search pattern- Returns:
- iterator
-
iterator
Iterator<V> iterator(int count)
Returns an iterator over elements in this set. Elements are loaded in batch. Batch size is defined bycountparam.- Parameters:
count- - size of elements batch- Returns:
- iterator
-
iterator
Iterator<V> iterator(String pattern, int count)
Returns an iterator over elements in this set. Elements are loaded in batch. Batch size is defined bycountparam. If pattern is not null then only elements match this pattern are loaded.- Parameters:
pattern- - search patterncount- - size of elements batch- Returns:
- iterator
-
contains
boolean contains(Object o)
Returnstrueif this sorted set contains encoded state of the specified element.- Parameters:
o- element whose presence in this collection is to be tested- Returns:
trueif this sorted set contains the specified element andfalseotherwise
-
toArray
Object[] toArray()
Returns this sorted set in array of Object type.- Returns:
- array of values
-
toArray
<T> T[] toArray(T[] a)
Returns this sorted set in array of defined type.- Type Parameters:
T- type of element- Parameters:
a- - instance of array- Returns:
- array of values
-
remove
boolean remove(Object o)
Removes a single instance of the specified element from this sorted set, if it is present.- Parameters:
o- element to be removed from this sorted set, if present- Returns:
trueif an element was removed as a result of this call
-
containsAll
boolean containsAll(Collection<?> c)
Returnstrueif this sorted set contains all of the elements in encoded state in the specified collection.- Parameters:
c- collection to be checked for containment in this sorted set- Returns:
trueif this sorted set contains all of the elements in the specified collection
-
removeAll
boolean removeAll(Collection<?> c)
Removes all of this sorted set's elements that are also contained in the specified collection.- Parameters:
c- collection containing elements to be removed from this collection- Returns:
trueif this sorted set changed as a result of the call
-
retainAll
boolean retainAll(Collection<?> c)
Retains only the elements in this sorted set that are contained in the specified collection.- Parameters:
c- collection containing elements to be retained in this collection- Returns:
trueif this sorted set changed as a result of the call
-
clear
void clear()
Removes all elements of this sorted set.
-
addScore
Double addScore(V element, Number value)
Increases score of specified element by value.- Parameters:
element- - element whose score needs to be increasedvalue- - value- Returns:
- updated score of element
-
addScoreAndGetRank
Integer addScoreAndGetRank(V object, Number value)
Adds score to element and returns its rank- Parameters:
object- - object itselfvalue- - object score- Returns:
- rank
-
addScoreAndGetRevRank
Integer addScoreAndGetRevRank(V object, Number value)
Adds score to element and returns its reverse rank- Parameters:
object- - object itselfvalue- - object score- Returns:
- reverse rank
-
rangeTo
int rangeTo(String destName, int startIndex, int endIndex)
Stores to defined ScoredSortedSet values by rank range. Indexes are zero based.-1means the highest score,-2means the second highest score.Requires Redis 6.2.0 and higher.
- Parameters:
startIndex- - start indexendIndex- - end index- Returns:
- elements
-
rangeTo
int rangeTo(String destName, double startScore, boolean startScoreInclusive, double endScore, boolean endScoreInclusive)
Stores to defined ScoredSortedSet values betweenstartScoreandendScore.Requires Redis 6.2.0 and higher.
- Parameters:
startScore- - start score. UseDouble.POSITIVE_INFINITYorDouble.NEGATIVE_INFINITYto define infinity numbersstartScoreInclusive- - start score inclusiveendScore- - end score UseDouble.POSITIVE_INFINITYorDouble.NEGATIVE_INFINITYto define infinity numbersendScoreInclusive- - end score inclusive- Returns:
- values
-
rangeTo
int rangeTo(String destName, double startScore, boolean startScoreInclusive, double endScore, boolean endScoreInclusive, int offset, int count)
Stores to defined ScoredSortedSet values betweenstartScoreandendScore.Requires Redis 6.2.0 and higher.
- Parameters:
startScore- - start score. UseDouble.POSITIVE_INFINITYorDouble.NEGATIVE_INFINITYto define infinity numbersstartScoreInclusive- - start score inclusiveendScore- - end score UseDouble.POSITIVE_INFINITYorDouble.NEGATIVE_INFINITYto define infinity numbersendScoreInclusive- - end score inclusiveoffset- - offset of sorted datacount- - amount of sorted data- Returns:
- values
-
revRangeTo
int revRangeTo(String destName, int startIndex, int endIndex)
Stores to defined ScoredSortedSet values in reversed order by rank range. Indexes are zero based.-1means the highest score,-2means the second highest score.Requires Redis 6.2.0 and higher.
- Parameters:
startIndex- - start indexendIndex- - end index- Returns:
- elements
-
revRangeTo
int revRangeTo(String destName, double startScore, boolean startScoreInclusive, double endScore, boolean endScoreInclusive)
Stores to defined ScoredSortedSet values in reversed order betweenstartScoreandendScore.Requires Redis 6.2.0 and higher.
- Parameters:
startScore- - start score. UseDouble.POSITIVE_INFINITYorDouble.NEGATIVE_INFINITYto define infinity numbersstartScoreInclusive- - start score inclusiveendScore- - end score UseDouble.POSITIVE_INFINITYorDouble.NEGATIVE_INFINITYto define infinity numbersendScoreInclusive- - end score inclusive- Returns:
- values
-
revRangeTo
int revRangeTo(String destName, double startScore, boolean startScoreInclusive, double endScore, boolean endScoreInclusive, int offset, int count)
Stores to defined ScoredSortedSet values in reversed order betweenstartScoreandendScore.Requires Redis 6.2.0 and higher.
- Parameters:
startScore- - start score. UseDouble.POSITIVE_INFINITYorDouble.NEGATIVE_INFINITYto define infinity numbersstartScoreInclusive- - start score inclusiveendScore- - end score UseDouble.POSITIVE_INFINITYorDouble.NEGATIVE_INFINITYto define infinity numbersendScoreInclusive- - end score inclusiveoffset- - offset of sorted datacount- - amount of sorted data- Returns:
- values
-
valueRange
Collection<V> valueRange(int startIndex, int endIndex)
Returns values by rank range. Indexes are zero based.-1means the highest score,-2means the second highest score.- Parameters:
startIndex- - start indexendIndex- - end index- Returns:
- elements
-
valueRangeReversed
Collection<V> valueRangeReversed(int startIndex, int endIndex)
Returns values by rank range in reverse order. Indexes are zero based.-1means the highest score,-2means the second highest score.- Parameters:
startIndex- - start indexendIndex- - end index- Returns:
- elements
-
entryRange
Collection<ScoredEntry<V>> entryRange(int startIndex, int endIndex)
Returns entries (value and its score) by rank range. Indexes are zero based.-1means the highest score,-2means the second highest score.- Parameters:
startIndex- - start indexendIndex- - end index- Returns:
- entries
-
entryRangeReversed
Collection<ScoredEntry<V>> entryRangeReversed(int startIndex, int endIndex)
Returns entries (value and its score) by rank range in reverse order. Indexes are zero based.-1means the highest score,-2means the second highest score.- Parameters:
startIndex- - start indexendIndex- - end index- Returns:
- entries
-
valueRange
Collection<V> valueRange(double startScore, boolean startScoreInclusive, double endScore, boolean endScoreInclusive)
Returns all values betweenstartScoreandendScore.- Parameters:
startScore- - start score. UseDouble.POSITIVE_INFINITYorDouble.NEGATIVE_INFINITYto define infinity numbersstartScoreInclusive- - start score inclusiveendScore- - end score UseDouble.POSITIVE_INFINITYorDouble.NEGATIVE_INFINITYto define infinity numbersendScoreInclusive- - end score inclusive- Returns:
- values
-
valueRangeReversed
Collection<V> valueRangeReversed(double startScore, boolean startScoreInclusive, double endScore, boolean endScoreInclusive)
Returns all values betweenstartScoreandendScorein reversed order.- Parameters:
startScore- - start score. UseDouble.POSITIVE_INFINITYorDouble.NEGATIVE_INFINITYto define infinity numbersstartScoreInclusive- - start score inclusiveendScore- - end score UseDouble.POSITIVE_INFINITYorDouble.NEGATIVE_INFINITYto define infinity numbersendScoreInclusive- - end score inclusive- Returns:
- values
-
entryRange
Collection<ScoredEntry<V>> entryRange(double startScore, boolean startScoreInclusive, double endScore, boolean endScoreInclusive)
Returns all entries (value and its score) betweenstartScoreandendScore.- Parameters:
startScore- - start score. UseDouble.POSITIVE_INFINITYorDouble.NEGATIVE_INFINITYto define infinity numbersstartScoreInclusive- - start score inclusiveendScore- - end score UseDouble.POSITIVE_INFINITYorDouble.NEGATIVE_INFINITYto define infinity numbersendScoreInclusive- - end score inclusive- Returns:
- entries
-
valueRange
Collection<V> valueRange(double startScore, boolean startScoreInclusive, double endScore, boolean endScoreInclusive, int offset, int count)
Returns all values betweenstartScoreandendScore.- Parameters:
startScore- - start score. UseDouble.POSITIVE_INFINITYorDouble.NEGATIVE_INFINITYto define infinity numbersstartScoreInclusive- - start score inclusiveendScore- - end score UseDouble.POSITIVE_INFINITYorDouble.NEGATIVE_INFINITYto define infinity numbersendScoreInclusive- - end score inclusiveoffset- - offset of sorted datacount- - amount of sorted data- Returns:
- values
-
valueRangeReversed
Collection<V> valueRangeReversed(double startScore, boolean startScoreInclusive, double endScore, boolean endScoreInclusive, int offset, int count)
Returns all values betweenstartScoreandendScorein reversed order.- Parameters:
startScore- - start score. UseDouble.POSITIVE_INFINITYorDouble.NEGATIVE_INFINITYto define infinity numbersstartScoreInclusive- - start score inclusiveendScore- - end score UseDouble.POSITIVE_INFINITYorDouble.NEGATIVE_INFINITYto define infinity numbersendScoreInclusive- - end score inclusiveoffset- - offset of sorted datacount- - amount of sorted data- Returns:
- values
-
entryRange
Collection<ScoredEntry<V>> entryRange(double startScore, boolean startScoreInclusive, double endScore, boolean endScoreInclusive, int offset, int count)
Returns all entries (value and its score) betweenstartScoreandendScore.- Parameters:
startScore- - start score. UseDouble.POSITIVE_INFINITYorDouble.NEGATIVE_INFINITYto define infinity numbersstartScoreInclusive- - start score inclusiveendScore- - end score UseDouble.POSITIVE_INFINITYorDouble.NEGATIVE_INFINITYto define infinity numbersendScoreInclusive- - end score inclusiveoffset- - offset of sorted datacount- - amount of sorted data- Returns:
- entries
-
entryRangeReversed
Collection<ScoredEntry<V>> entryRangeReversed(double startScore, boolean startScoreInclusive, double endScore, boolean endScoreInclusive)
Returns all entries (value and its score) betweenstartScoreandendScorein reversed order.- Parameters:
startScore- - start score. UseDouble.POSITIVE_INFINITYorDouble.NEGATIVE_INFINITYto define infinity numbersstartScoreInclusive- - start score inclusiveendScore- - end score UseDouble.POSITIVE_INFINITYorDouble.NEGATIVE_INFINITYto define infinity numbersendScoreInclusive- - end score inclusive- Returns:
- entries
-
entryRangeReversed
Collection<ScoredEntry<V>> entryRangeReversed(double startScore, boolean startScoreInclusive, double endScore, boolean endScoreInclusive, int offset, int count)
Returns all entries (value and its score) betweenstartScoreandendScorein reversed order.- Parameters:
startScore- - start score. UseDouble.POSITIVE_INFINITYorDouble.NEGATIVE_INFINITYto define infinity numbersstartScoreInclusive- - start score inclusiveendScore- - end score UseDouble.POSITIVE_INFINITYorDouble.NEGATIVE_INFINITYto define infinity numbersendScoreInclusive- - end score inclusiveoffset- - offset of sorted datacount- - amount of sorted data- Returns:
- entries
-
count
int count(double startScore, boolean startScoreInclusive, double endScore, boolean endScoreInclusive)Returns the number of elements with a score betweenstartScoreandendScore.- Parameters:
startScore- - start scorestartScoreInclusive- - start score inclusiveendScore- - end scoreendScoreInclusive- - end score inclusive- Returns:
- count of elements
-
readAll
Collection<V> readAll()
Read all values at once.- Returns:
- values
-
intersection
int intersection(String... names)
Intersect provided ScoredSortedSets and store result to current ScoredSortedSet- Parameters:
names- - names of ScoredSortedSet- Returns:
- length of intersection
-
intersection
int intersection(RScoredSortedSet.Aggregate aggregate, String... names)
Intersect provided ScoredSortedSets with defined aggregation method and store result to current ScoredSortedSet- Parameters:
aggregate- - score aggregation modenames- - names of ScoredSortedSet- Returns:
- length of intersection
-
intersection
int intersection(Map<String,Double> nameWithWeight)
Intersect provided ScoredSortedSets mapped to weight multiplier and store result to current ScoredSortedSet- Parameters:
nameWithWeight- - name of ScoredSortedSet mapped to weight multiplier- Returns:
- length of intersection
-
intersection
int intersection(RScoredSortedSet.Aggregate aggregate, Map<String,Double> nameWithWeight)
Intersect provided ScoredSortedSets mapped to weight multiplier with defined aggregation method and store result to current ScoredSortedSet- Parameters:
aggregate- - score aggregation modenameWithWeight- - name of ScoredSortedSet mapped to weight multiplier- Returns:
- length of intersection
-
readIntersection
Collection<V> readIntersection(String... names)
Intersect provided ScoredSortedSets with current ScoredSortedSet without state changeRequires Redis 6.2.0 and higher.
- Parameters:
names- - names of ScoredSortedSet- Returns:
- result of intersection
-
readIntersection
Collection<V> readIntersection(RScoredSortedSet.Aggregate aggregate, String... names)
Intersect provided ScoredSortedSets with current ScoredSortedSet using defined aggregation method without state changeRequires Redis 6.2.0 and higher.
- Parameters:
aggregate- - score aggregation modenames- - names of ScoredSortedSet- Returns:
- result of intersection
-
readIntersection
Collection<V> readIntersection(Map<String,Double> nameWithWeight)
Intersect provided ScoredSortedSets mapped to weight multiplier with current ScoredSortedSet without state changeRequires Redis 6.2.0 and higher.
- Parameters:
nameWithWeight- - name of ScoredSortedSet mapped to weight multiplier- Returns:
- result of intersection
-
readIntersection
Collection<V> readIntersection(RScoredSortedSet.Aggregate aggregate, Map<String,Double> nameWithWeight)
Intersect provided ScoredSortedSets mapped to weight multiplier with current ScoredSortedSet using defined aggregation method without state changeRequires Redis 6.2.0 and higher.
- Parameters:
aggregate- - score aggregation modenameWithWeight- - name of ScoredSortedSet mapped to weight multiplier- Returns:
- result of intersection
-
union
int union(String... names)
Union provided ScoredSortedSets and store result to current ScoredSortedSet- Parameters:
names- - names of ScoredSortedSet- Returns:
- length of union
-
union
int union(RScoredSortedSet.Aggregate aggregate, String... names)
Union provided ScoredSortedSets with defined aggregation method and store result to current ScoredSortedSet- Parameters:
aggregate- - score aggregation modenames- - names of ScoredSortedSet- Returns:
- length of union
-
union
int union(Map<String,Double> nameWithWeight)
Union provided ScoredSortedSets mapped to weight multiplier and store result to current ScoredSortedSet- Parameters:
nameWithWeight- - name of ScoredSortedSet mapped to weight multiplier- Returns:
- length of union
-
union
int union(RScoredSortedSet.Aggregate aggregate, Map<String,Double> nameWithWeight)
Union provided ScoredSortedSets mapped to weight multiplier with defined aggregation method and store result to current ScoredSortedSet- Parameters:
aggregate- - score aggregation modenameWithWeight- - name of ScoredSortedSet mapped to weight multiplier- Returns:
- length of union
-
readUnion
Collection<V> readUnion(String... names)
Union ScoredSortedSets specified by name with current ScoredSortedSet without state change.Requires Redis 6.2.0 and higher.
- Parameters:
names- - names of ScoredSortedSet- Returns:
- result of union
-
readUnion
Collection<V> readUnion(RScoredSortedSet.Aggregate aggregate, String... names)
Union ScoredSortedSets specified by name with defined aggregation method and current ScoredSortedSet without state change.Requires Redis 6.2.0 and higher.
- Parameters:
aggregate- - score aggregation modenames- - names of ScoredSortedSet- Returns:
- result of union
-
readUnion
Collection<V> readUnion(Map<String,Double> nameWithWeight)
Union provided ScoredSortedSets mapped to weight multiplier and current ScoredSortedSet without state change.Requires Redis 6.2.0 and higher.
- Parameters:
nameWithWeight- - name of ScoredSortedSet mapped to weight multiplier- Returns:
- result of union
-
readUnion
Collection<V> readUnion(RScoredSortedSet.Aggregate aggregate, Map<String,Double> nameWithWeight)
Union provided ScoredSortedSets mapped to weight multiplier with defined aggregation method and current ScoredSortedSet without state changeRequires Redis 6.2.0 and higher.
- Parameters:
aggregate- - score aggregation modenameWithWeight- - name of ScoredSortedSet mapped to weight multiplier- Returns:
- result of union
-
readDiff
Collection<V> readDiff(String... names)
Diff ScoredSortedSets specified by name with current ScoredSortedSet without state change.Requires Redis 6.2.0 and higher.
- Parameters:
names- - name of sets- Returns:
- result of diff
-
diff
int diff(String... names)
Diff provided ScoredSortedSets and store result to current ScoredSortedSetRequires Redis 6.2.0 and higher.
- Parameters:
names- - name of sets- Returns:
- length of diff
-
-