Message Queues in Ruby on Rails

前端 未结 7 1762
太阳男子
太阳男子 2020-12-22 19:42

What message queues are people using for their Rails apps and what was the driving force behind the decision to choose it. Does the latest Twitter publicity over their in ho

7条回答
  •  有刺的猬
    2020-12-22 20:09

    I use background_job which like delayed_job is a database-based queue.

    A database makes an OK queue as long as you're not doing too much traffic in and out.

    The reason I like background_job (and delayed_job) is that they do not require a separate process. They can run through cron. For me, this is of key importance because my messaging needs are even simpler than my meager sysadmin skills.

提交回复
热议问题