redis/rpush

List Push Right

Append to list

list
data-structure

Command

RPUSH key element

Explanation

Inserts all specified values at the tail of the list stored at key.

Examples

Add task to end

RPUSH tasks "task2"