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 6468265
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T05:52:25+00:00 2026-05-25T05:52:25+00:00

I am currently using MongoDB for tracking of various things in a Rails 2

  • 0

I am currently using MongoDB for tracking of various things in a Rails 2 app. I am using the following code to see if MongoDB is up and running and, depending upon the status, displaying a link or an “Offline” message.

This is only for admins, so it’s not mission-critical, as the app will continue to run without MongoDB, but I do want to keep disabling the link in the menu when it’s not running. However, I don’t like the overhead of the below code (doesn’t take long to run, but hope that there is a cleaner, faster way):

  def verify_mongodb_status
    begin
      track = Track.first
      @mongodb_running = true
    rescue
      @mongodb_running = false
      logger.debug("***MongoDB not running.***")
      notify_admin_about_errors("***MongoDB is not running***)
    end
   end

EDIT: I forgot to mention that I’m already doing a before_filter for this; the method sits in application_controller.rb.

  • 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-25T05:52:26+00:00Added an answer on May 25, 2026 at 5:52 am

    I decided to go with action_caching as there doesn’t seem to be a great way to do this. The result was quite a large speed increase from ~120ms to ~16-25ms:

      def verify_mongodb_status
        begin
          track = Track.first
          @mongodb_running = true
        rescue => e
          @mongodb_running = false
          logger.debug("***MONGODB OFFLINE***: #{e}")
          notify_admin_about_errors("MongoDB", "MongoDB error:\n#{e}", nil)
          expire_action :action => :verify_mongodb_status
          return
        end
      end
    

    I’m adding logic now to keep from getting bombarded by emails when MongoDB goes offline (1 is enough).

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

Sidebar

Related Questions

I am currently working on a rails app where we are using mongoid/mongoDB on
I am using MongoDB in our project and I'm currently learning how things work.
I'm currently using ASP.NET MVC3 and MongoDB for a web app. MongoDB uses UTC
I am currently using mongodb, and I see very bad performance of queries (It
I'm currently using MongoDB to record application logs, and while I'm quite happy with
Currently using Google Analytics as a supplement to our paid tracking software, but neither
I am developing a website using Codeigniter and MongoDB (Alex Bilbie library). Currently there
I'm designing an application that processes RSS feeds using MongoDB. Currently my collections are
I am currently using MongoDB's MapReduce to generate hourly ad view counts like this:
I'm currently trying to make a register form using mongoDB and nodeJS - I've

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.