RPUSH
Insert one or more values at the tail (right side) of the list. If the key does not exist, an empty list will be created and the RPUSH operation will be performed. When the key exists but is not of list type, an error is returned.
Redis Native Command Syntax
Section titled “Redis Native Command Syntax”RPUSH key element [element ...]Parameter Description
- key: The key of the list
- element: One or more elements to insert at the tail of the list
Detailed Explanation
Section titled “Detailed Explanation”The RPUSH command is one of the list operation commands. It inserts the specified elements at the tail of the list. If there are multiple elements, they will be inserted at the tail of the list in left-to-right order.
Redisun Usage
Section titled “Redisun Usage”In redisun, the RPUSH command is implemented through the RPushCommand class and the rpush method in the Redisun class.
Basic Usage
Section titled “Basic Usage”Redisun redisun = Redisun.create(options -> { options.setAddress("redis://127.0.0.1:6379");});
// Insert a single element at the tail of the listlong result = redisun.rpush("mylist", "value1");System.out.println("List length after RPUSH: " + result);
// Insert multiple elements at the tail of the listlong result2 = redisun.rpush("mylist", "value2", "value3");System.out.println("List length after RPUSH multiple values: " + result2);
// Asynchronous versionCompletableFuture<Long> future = redisun.asyncRpush("mylist", "value4");future.thenAccept(length -> System.out.println("Async RPUSH result: " + length));- If the key does not exist, an empty list will be automatically created and then the RPUSH operation will be performed
- If the key exists but is not of list type, an exception will be thrown
- When inserting multiple elements, they will be inserted at the tail of the list in parameter order from left to right
- The command returns the length of the list after the operation
- The operation is atomic