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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T08:24:27+00:00 2026-06-10T08:24:27+00:00

I wonder if it is possible to create a FIFO queue with mongodb and

  • 0

I wonder if it is possible to create a FIFO queue with mongodb and ruby(mongoid).

I am trying to use capped collections but I cannot see how I can pop my queue. There seem to be no methods in collection to do this.

What I am doing right now is:

$fifo = Mongo::Connection.new.db("fifo")

queue = "#{queue_name}_#{queue_type}"
unless $fifo[queue].find.present?
  $fifo.command(create: queue, capped: true, size: 10000000, max: 1000)
end 
$fifo[queue].insert(url: "http://www.example.com/unique001")
$fifo[queue].insert(url: "http://www.example.com/unique002")
$fifo[queue].insert(url: "http://www.example.com/unique003")

Which gives me a capped collection that looks like (from console)

> db.test001_high.find()
{ "_id" : ObjectId("503c4714236f440e9c000001"), "url" : "http://www.example.com/unique001" }
{ "_id" : ObjectId("503c4714236f440e9c000002"), "url" : "http://www.example.com/unique002" }
{ "_id" : ObjectId("503c4714236f440e9c000003"), "url" : "http://www.example.com/unique003" }

What I wonder is, is there a way in ruby to have a blocking pop on this collection? I must say I am not really familiar with mongodb and am just trying to create a fifo queue like I have in redis. So maybe I am approaching this problem the wrong way.

  • 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-06-10T08:24:29+00:00Added an answer on June 10, 2026 at 8:24 am

    I implemented a FIFO queue for mongo in Java. You should use the atomic operation findAndModify to find the earliest entry from the queue collection, and remove the document (remove=true) or set a status field.

    The other thing to be careful is that you should only be doing this with MasterOnly reads, or set your write-number equal to the number of nodes on write. Otherwise you may get inconsistent result due to replication delay.

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

Sidebar

Related Questions

It's possible to create custom transform matrices. But I wonder if they are suited
I wonder if it's possible to create an extension method which has functionality &
I wonder, is it possible to create vertical marker in zedgraph ? I want
I wonder if it is possible to use FK's in Mysql (InnoDB) for inverse
I wonder if it's possible to create two consecutive lists in markdown without them
I wonder, if it's possible to create and serve to the clients Mercurial repository
I wonder if it's possible to create a stored procedure in MySQL5 via ColdFusion's
I wonder if it is possible to create DataInputStream backed by a MappedByteBuffer instance
I wonder if there is any possible way to get or create an event
I wonder if it is possible to create an executable module from a Python

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.