Is there a way to store multiple values in a Redis list at the same time? I can only find a way to insert 1 value at the time in a list.
I’ve been looking at the following commands documentation: http://redis.io/commands
update: I have created a ticket for this feature.
Yeah, it doesn’t look like that’s possible. You might be able to use MULTI (transactions) to store multiple values in an atomic sequence.