Package io.quarkus.redis.datasource.list
Interface TransactionalListCommands<K,V>
- All Superinterfaces:
TransactionalRedisCommands
- All Known Implementing Classes:
BlockingTransactionalListCommandsImpl
-
Method Summary
Modifier and TypeMethodDescriptionvoidblmove(K source, K destination, Position positionInSource, Position positionInDest, Duration timeout) Execute the command BLMOVE.voidExecute the command BLMPOP.voidExecute the command BLMPOP.voidExecute the command BLPOP.voidExecute the command BRPOP.voidbrpoplpush(Duration timeout, K source, K destination) Deprecated.See https://redis.io/commands/brpoplpushvoidExecute the command LINDEX.voidlinsertAfterPivot(K key, V pivot, V element) Execute the command LINSERT.voidlinsertBeforePivot(K key, V pivot, V element) Execute the command LINSERT.voidExecute the command LLEN.voidExecute the command LMOVE.voidExecute the command LMPOP.voidExecute the command LMPOP.voidExecute the command LPOP.voidExecute the command LPOP.voidExecute the command LPOS.voidExecute the command LPOS.voidExecute the command LPOS.voidExecute the command LPOS.voidExecute the command LPUSH.voidExecute the command LPUSHX.voidExecute the command LRANGE.voidExecute the command LREM.voidExecute the command LSET.voidExecute the command LTRIM.voidExecute the command RPOP.voidExecute the command RPOP.voidDeprecated.See https://redis.io/commands/rpoplpushvoidExecute the command RPUSH.voidExecute the command RPUSHX.Methods inherited from interface io.quarkus.redis.datasource.TransactionalRedisCommands
getDataSource
-
Method Details
-
blmove
void blmove(K source, K destination, Position positionInSource, Position positionInDest, Duration timeout) Execute the command BLMOVE. Summary: Pop an element from a list, push it to another list and return it; or block until one is available Group: list Requires Redis 6.2.0- Parameters:
source- the keydestination- the keypositionInSource- the position of the element in the source,LEFTmeans the first element,RIGHTmeans the last element.positionInDest- the position of the element in the destination,LEFTmeans the first element,RIGHTmeans the last element.timeout- the operation timeout (in seconds)
-
blmpop
Execute the command BLMPOP. Summary: Pop elements from a list, or block until one is available Group: list Requires Redis 7.0.0- Parameters:
timeout- the operation timeout (in seconds)position- whether if the element must be popped from the beginning of the list (LEFT) or from the end (RIGHT)keys- the keys from which the element must be popped
-
blmpop
Execute the command BLMPOP. Summary: Pop elements from a list, or block until one is available Group: list Requires Redis 7.0.0- Parameters:
timeout- the operation timeout (in seconds)position- whether if the element must be popped from the beginning of the list (LEFT) or from the end (RIGHT)count- the number of element to popkeys- the keys from which the element must be popped
-
blpop
Execute the command BLPOP. Summary: Remove and get the first element in a list, or block until one is available Group: list Requires Redis 2.0.0- Parameters:
timeout- the operation timeout (in seconds)keys- the keys from which the element must be popped
-
brpop
Execute the command BRPOP. Summary: Remove and get the last element in a list, or block until one is available Group: list Requires Redis 2.0.0- Parameters:
timeout- the operation timeout (in seconds)keys- the keys from which the element must be popped
-
brpoplpush
Deprecated.See https://redis.io/commands/brpoplpushExecute the command BRPOPLPUSH. Summary: Pop an element from a list, push it to another list and return it; or block until one is available Group: list Requires Redis 2.2.0- Parameters:
timeout- the timeout, in secondssource- the source keydestination- the detination key
-
lindex
Execute the command LINDEX. Summary: Get an element from a list by its index Group: list Requires Redis 1.0.0- Parameters:
key- the keyindex- the index
-
linsertBeforePivot
Execute the command LINSERT. Summary: Insert an element before another element in a list Group: list Requires Redis 2.2.0- Parameters:
key- the keypivot- the pivot, i.e. the position referenceelement- the element to insert
-
linsertAfterPivot
Execute the command LINSERT. Summary: Insert an element after another element in a list Group: list Requires Redis 2.2.0- Parameters:
key- the keypivot- the pivot, i.e. the position referenceelement- the element to insert
-
llen
Execute the command LLEN. Summary: Get the length of a list Group: list Requires Redis 1.0.0- Parameters:
key- the key
-
lmove
Execute the command LMOVE. Summary: Pop an element from a list, push it to another list and return it Group: list Requires Redis 6.2.0- Parameters:
source- the keydestination- the keypositionInSource- the position of the element to pop in the source (LEFT: first element, RIGHT: last element)positionInDestination- the position of the element to insert in the destination (LEFT: first element, RIGHT: last element)
-
lmpop
Execute the command LMPOP. Summary: Pop one element from the first non-empty list Group: list Requires Redis 7.0.0- Parameters:
position- the position of the item to pop (LEFT: beginning ot the list, RIGHT: end of the list)keys- the keys from which the item will be popped, must not be empty
-
lmpop
Execute the command LMPOP. Summary: Popcountelements from the first non-empty list Group: list Requires Redis 7.0.0- Parameters:
position- the position of the item to pop (LEFT: beginning ot the list, RIGHT: end of the list)count- the number of items to popkeys- the keys from which the item will be popped, must not be empty
-
lpop
Execute the command LPOP. Summary: Remove and get the first elements in a list Group: list Requires Redis 1.0.0- Parameters:
key- the key
-
lpop
Execute the command LPOP. Summary: Remove and get the first elements in a list Group: list Requires Redis 1.0.0- Parameters:
key- the keycount- the number of element to pop
-
lpos
Execute the command LPOS. Summary: Return the index of matching elements on a list Group: list Requires Redis 6.0.6- Parameters:
key- the keyelement- the element to find
-
lpos
Execute the command LPOS. Summary: Return the index of matching elements on a list Group: list Requires Redis 6.0.6- Parameters:
key- the keyelement- the element to findargs- the extra command parameter
-
lpos
Execute the command LPOS. Summary: Return the index of matching elements on a list Group: list Requires Redis 6.0.6- Parameters:
key- the keyelement- the element to findcount- the number of occurrence to find
-
lpos
Execute the command LPOS. Summary: Return the index of matching elements on a list Group: list Requires Redis 6.0.6- Parameters:
key- the keyelement- the element to findcount- the number of occurrence to find
-
lpush
Execute the command LPUSH. Summary: Prepend one or multiple elements to a list Group: list Requires Redis 1.0.0- Parameters:
key- the keyelements- the elements to add
-
lpushx
Execute the command LPUSHX. Summary: Prepend an element to a list, only if the list exists Group: list Requires Redis 2.2.0- Parameters:
key- the keyelements- the elements to add
-
lrange
Execute the command LRANGE. Summary: Get a range of elements from a list Group: list Requires Redis 1.0.0- Parameters:
key- the keystart- the starting positionstop- the last position
-
lrem
Execute the command LREM. Summary: Remove elements from a list Group: list Requires Redis 1.0.0- Parameters:
key- the keycount- the number of occurence to remove, following the given rules: if count > 0: Remove elements equal to element moving from head to tail. if count invalid input: '<' 0: Remove elements equal to element moving from tail to head. if count = 0: Remove all elements equal to element.element- the element to remove
-
lset
Execute the command LSET. Summary: Set the value of an element in a list by its index Group: list Requires Redis 1.0.0- Parameters:
key- the keyindex- the indexelement- the element to insert
-
ltrim
Execute the command LTRIM. Summary: Trim a list to the specified range Group: list Requires Redis 1.0.0- Parameters:
key- the keystart- the starting indexstop- the last index
-
rpop
Execute the command RPOP. Summary: Remove and get the last elements in a list Group: list Requires Redis 1.0.0- Parameters:
key- the key
-
rpop
Execute the command RPOP. Summary: Remove and get the last elements in a list Group: list Requires Redis 1.0.0- Parameters:
key- the keycount- the number of element to pop
-
rpoplpush
Deprecated.See https://redis.io/commands/rpoplpushExecute the command RPOPLPUSH. Summary: Remove the last element in a list, prepend it to another list and return it Group: list Requires Redis 1.2.0- Parameters:
source- the keydestination- the key
-
rpush
Execute the command RPUSH. Summary: Append one or multiple elements to a list Group: list Requires Redis 1.0.0- Parameters:
key- the keyvalues- the values to add to the list
-
rpushx
Execute the command RPUSHX. Summary: Append an element to a list, only if the list exists Group: list Requires Redis 2.2.0- Parameters:
key- the keyvalues- the values to add to the list
-