Struct RedisZSet
Represents a Redis sorted set value.
struct RedisZSet(T)
;
In addition to the methods specific to sorted set values, all operations of
RedisValue
are available using an alias this
declaration.
Constructors
Name | Description |
---|---|
this
(db, key)
|
Fields
Name | Type | Description |
---|---|---|
value
|
RedisValue |
Methods
Name | Description |
---|---|
count
(min, max)
|
|
countByLex
(min, max)
|
|
getRank
(member)
|
|
getReverseRank
(member)
|
|
insert
(args)
|
|
length
()
|
|
opIndexOpAssign
(value, member)
|
|
rangeByLex
(min, max, offset, count)
|
|
remove
(members)
|
|
remove
()
|
|
removeRangeByRank
(start, end)
|
|
removeRangeByScore
(min, max)
|