Turnpike is a Redis-backed queue that wraps a List and speaks Ruby colloquial.
queue = Turnpike['foo']
queue << 1, 2, 3
queue.pop # => 1
queue.peek # => [2, 3]
queue << 4
queue.peek # => [2, 3, 4]
queue.unshift 1
queue.peek # => [1, 2, 3, 4]
[Read the API] 5. It's short.