Is it possible to shuffle a list in Redis (server-side)?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Not with version 2.4. With the future 2.6 release, perhaps it could be implemented with Lua server-side scripting, but I don't expect this to be really efficient. I don't know about your use case, but if you can live with unicity for your items, you can perhaps replace the list by a set and use the SPOP command. Instead of shuffling your list and removing items in a specific order, you can use an unordered container and pop out random items. |
|||||
|
|
No. For a full list of available commands use http://redis.io/commands#list |
|||
|
|