Struct RedisList
Represents a Redis list value.
struct RedisList(T)
;
In addition to the methods specific to list 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 |
---|---|
insertAfter
(pivot, value)
|
|
insertBack
(value)
|
|
insertBackIfExists
(value)
|
|
insertBefore
(pivot, value)
|
|
insertFront
(value)
|
|
insertFrontIfExists
(value)
|
|
length
()
|
|
opApply
(del)
|
|
opDollar
()
|
|
opIndex
(index)
|
|
opIndex
(index)
|
|
opIndexAssign
(value, index)
|
|
opIndexAssign
(value, index)
|
|
opSlice
(start, end)
|
|
opSlice
()
|
|
removeAll
(value)
|
|
removeBack
()
|
|
removeFirst
(value, count)
|
|
removeFront
()
|
|
removeFrontBlock
(max_wait)
|
|
removeLast
(value, count)
|
|
trim
(start, end)
|
Inner structs
Name | Description |
---|---|
Dollar
|