Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4078534
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T17:41:11+00:00 2026-05-20T17:41:11+00:00

In a rails web app, if I write messages to a queue like rabbitmq,

  • 0

In a rails web app, if I write messages to a queue like rabbitmq, how will clients be notified when a producer sends a message to the queue?

I’m guessing I have to create a seperate process that runs in the background to respond to messages correct? i.e. this code is outside of the scope of a web application.

If this is the case, is it possible to re-use the models/libs that are in the rails application already? do I have to copy this code in 2 places then?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T17:41:12+00:00Added an answer on May 20, 2026 at 5:41 pm

    It looks like your application requires what’s usually called a background or worker process. This is a fairly common requirement for any moderately complex web application.

    I’m guessing I have to create a seperate process that runs in the background to respond to messages correct?

    Yes – you’re right about this. Whilst it’s perfectly possible to use threads to handle the background tasks (in your case, reading and processing messages from RabbitMQ), the standard and recommended route for a Rails application is to run a separate background process.

    If this is the case, is it possible to re-use the models/libs that are in the rails application already?

    Absolutely. The simplest possible way to get this working is by using Rails’ built in runner command.

    Another option is to create a ruby script which loads up your Rails application. For example, you could create the file my_script.rb in the root of your project, which might look something like this:

    # Load my application:
    require File.join(File.dirname(__FILE__), 'config/environment.rb')
    
    # Now you can access your Rails environment as normal:
    MyModel.all.each { |x| x.do_something }
    

    If your needs become more complex, or you find that you need to run more than one background process to keep up with the volume of data you need to process, you might want to look at one of the many available libraries and frameworks which can help with this.

    Once you’ve created your background process, you’ll need a way to run it continuously when you deploy it to your production server. Whilst it’s possible to use libraries like daemons, as suggested by ctcherry, I would recommend using a dedicated tool like upstart (if deploying to ubuntu) or runit. A good summary of the most popular options is available here.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm looking for any pointers on how to write a rails web app without
I am developing a web app (using rails) that I will be launching within
I'm currently building a web app (atop Ruby on Rails), which will let users
For integration tests of my Rails web app I use Steak (something like Cucumber).
I am working on a non Rails web app, so no migrations script by
I'm trying to create a rails web app that does not use ActiveRecord framework
We have a web app running on Rails, using Devise and OmniAuth for user
I'd created my first web app using Ruby on Rails. And now, I want
I have a web app with a clean RESTful JSON API, based on Rails
I am deciding whether to use rails or django for a smallish web app.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.