Queue management in Rails

Posted by Cyborgo on Stack Overflow See other posts from Stack Overflow or by Cyborgo
Published on 2010-06-18T05:54:08Z Indexed on 2010/06/18 6:03 UTC
Read the original article Hit count: 229

Filed under:

Hi,

I am planning to have something like this for a website that is on Ruby on Rails. User comes and enters a bunch of names in a text field, and a queue gets created from all the names. From there the website keeps asking more details for each one from the queue until the queue finishes.

Is there any queue management gem available in Ruby or I have to just create an array and keep incrementing the index in session variable to emulate a queue behaviour?

© Stack Overflow or respective owner

Related posts about ruby-on-rails