In Redis, the RPUSH
command inserts one or more values into the tail of the list at the specified key.
If the key doesn’t exist, it is created as an empty list before performing the push operation. If the key already holds a value that is not a list, an error is returned.
Continue reading