Ruby driver for MongoDB.
3
votes
1answer
44 views
Experiencing delay when fetching 100th row
I am fetching all the rows from the collection and experience delay on 100th row. I understand that find method returns cursor and not all the data up front and at certain point need to fetch more ...
0
votes
0answers
17 views
upgrade JavaScript interpreter that mongod instance is running
My MongoDB shell version is using 2.2. I did a homebrew update on mongod.
Now the issue is that when I run db.serverBuildInfo(), i see that the version being used is 2.0.5. How can I update this to ...
2
votes
1answer
83 views
Mongoid: retrieving documents whose _id exists in another collection
I am trying to fetch the documents from a collection based on the existence of a reference to these documents in another collection.
Let's say I have two collections Users and Courses and the models ...
1
vote
2answers
459 views
How to programatically get the current database Mongoid is writing to?
I am talking to multiple databases using Mongoid.override_database("database_name") using Mongoid with rails. How do I find the current database programatically?
Mongoid docs on sessions: ...
0
votes
1answer
128 views
MongoDB on collection.insert and data-size dilemma
I'm working on this project where I have to perform mass insertion on MongoDB database
I understand that MongoDB is a document database and there is limit on size of each document as seen here
...
0
votes
0answers
134 views
Rails console not showing the MongoDB queries
I have a small issue with Rails and mongodb. I m using the MongoId for this purpose. when i going to make any operations on my model for example fetching records or insert new one etc from my rails ...
1
vote
1answer
113 views
Mongodb-Ruby Limiting to specific fields
I'm having some problems limiting fields in result set from mongodb using the Ruby API.
I have a mongo collection where I am storing information about files. One of the fields is 'image_filename'. I ...
-1
votes
1answer
392 views
Query a Many-to-Many relation in MongoDB
I am reading MongoDB in Action and when talking about querying many-to-many relationships in a Document, I'm having difficulty understanding how he wrote his example query (using the Ruby driver).
...
0
votes
1answer
63 views
Rails mongoDB single connection required
I am using rails application, my rails applications logs are should be stroed in mongoDB.
I am logging each and every controller's method call and its params its date of call etc.
Here is my code ...
1
vote
1answer
727 views
How to update nth element inside an array without $pull or $pop?
How to update value of the nth position element inside an array?
I want to update index 2 of category_id.
One solution is ($pop or $pull) and $addToSet.
Is there any other solution?
Array ( [_id] ...
2
votes
1answer
771 views
How can I check mongodb query performance without cache
I have a query that takes too long to finish.
I like to do some performance tests but after I check for one time (that takes currently ~30 seconds) the query start to run a lot faster (< 1 second).
...
2
votes
2answers
123 views
Is it possible to lower the max document size in Mongo or otherwise restrict document size on update?
I want to enforce a maximum document size that is lower than the system actually supports. Doing so on an insert is reasonable -- I can just check before insertion. Doing so on an update is less ...
0
votes
2answers
745 views
Ruby on Rails and MongoDB
I have a new Ruby on Rails installation where I can see the default start-page.
I followed this guide in order to install MongoDB to Rails.
Now I get this error when running rake test:
**Notice: C ...
1
vote
2answers
267 views
Cannot find Document with Ruby and MongoDB when using ObjectId
I have some code written in Ruby 1.9.2 patch level 136 and I'm have an issue where when I perform a find via the _id in the raw ruby mongo driver I get a nil when trying to use a value from a csv ...
1
vote
1answer
485 views
Mongoid order_by boolean
I have a notifications table in my database which contains the attributes: timestamp:datetime and read:boolean. What I want is to query and order my notifications; first by if they are read or not, ...
1
vote
1answer
357 views
get number of updated documents mongo
Is there a function in mongo to return the number of documents that were updated in an update statement?
I have tried to use count() but apparently the update statement only returns true or false so ...
1
vote
2answers
194 views
Embedding documents in existing documents with the Ruby Driver for MongoDB
I'm trying to embed a document inside an existing document using the Ruby Driver.
Here's what my primary document looks like:
db = Mongo::Connection.new.db("Portfolios")
project_collection = ...
0
votes
1answer
175 views
Simple MongoDB query on HASH not working as expected (only in some conditions)
Ok, it's a bit complex so i'll try to be clear.
I have a structure I use to build some sort of ticket system.
Parent Collection: Thread
Embedded Collection: Message (a Thread embeds 0..N ...
1
vote
3answers
921 views
Ruby group hashes by value of key
I have an array, which is output by a map/reduce method performed by MongoDB, it looks something like this:
[{"minute"=>30.0, "hour"=>15.0, "date"=>5.0, "month"=>9.0, "year"=>2011.0, ...
3
votes
2answers
662 views
Nested Group By Function with MongoDB
I'm pretty new with MongoDB, long time MySQL guy and am running into a little roadblock.
Given the below sample data:
TeamID Day OrderAmount
...
2
votes
1answer
832 views
Rails 3: Create a valid JSON Object from an Array of data
I am taking information from my MongoDB database (@bs). @bs has tons of information that I'm not interested, so what I need is to cycle trough all the information and create a new object with the ...
0
votes
1answer
260 views
Rails 3 + MongoDB: Render Json Without a Field
render :json => @bs.to_a.to_json, :except => ["completo"]
I want to render everything to json except the field "completo". That should be working but given that I need to do ".to_a" ...
1
vote
2answers
495 views
Rails 3 + MongoDB: How to do a nested query?
I am using Ruby Mongo Driver.
@surname = coll2.find("name" => {"surname" => "testing"})
Shouldn't this be working? I get no results.
I have {"name" : { "surname" : "testing" }}
1
vote
1answer
838 views
Return JSON with data from MongoDB
I am fetching data from MongoDB as follows:
@bs = coll2.find("date" => {"$gte" => initial_date, "$lte" => Time.now.utc})
It works fine but when I render @bs, it sends empty.
render ...
0
votes
1answer
1k views
Ruby Mongo Driver: How To Look For Date Intervals?
Given a init date and today, what's the query to search for all "names" between that date?
Thank you
1
vote
0answers
912 views
Queries on embedded documents with Mongoid/MongoDB (Rails)
I'm trying to figure out what the performance is with Mongoid when doing queries on embedded documents. I'm quite new to Mongoid and MongoDB, so if you spot anything that you think is bad practice, ...
0
votes
2answers
324 views
Can you create multiple indexes on a single field in Mongo? What does that look like?
I'm trying to create a compound key as my "_id" field, which takes in some geo information as well as other attributes. It looks something like:
{_id: {lat: 50, lon: 50, name: "some name"}}
After ...
1
vote
1answer
100 views
Limitation in retrieving rows from a mongodb from ruby code
I have a code which gets all the records from a collection of a mongodb and then it performs some computations.
My program takes too much time as the "coll_id.find().each do |eachitem|......." ...
1
vote
1answer
1k views
Document updates using mongo-ruby-driver?
Assuming the following:
irb> x
irb> => {"_id"=> 123456, "welcome"=>"Hi!", "welcome2" => "Enjoy your stay!"}
irb> coll.class
irb> => Mongo::Collection
How can I use the ...
9
votes
4answers
8k views
Getting the highest value of a column in MongoDB
I've been for some help on getting the highest value on a column for a mongo document. I can sort it and get the top/bottom, but I'm pretty sure there is a better way to do it.
I tried the following ...
2
votes
2answers
2k views
What's the best state machine gem to mongoid? [closed]
What's the best state machine gem to use with mongoid?
0
votes
1answer
472 views
Rails code generated with ORM mangomapper throws NoMethodError (undefined method `each' for “4d2aeaea4403baa84a000005”:String)
I am absolutely totally news to Rails and to MongoDB. I have been following tutorials from a good book and create my first Rails app with a light Twitter copy. Everything went fine and smooth.
But as ...
0
votes
1answer
416 views
MongoDb capped collection
can u help me pls as i surfed around but didn't find any information.
I'm working with mongoDB capped collection using Ruby. I need to update documents according to the id i retrieve from the query, ...
12
votes
3answers
4k views
MongoDB - too much data for sort() with no index error
I am using MongoDB 1.6.3, to store a big collection (300k+ records). I added a composite index.
db['collection_name'].getIndexes()
[
{
"name" : "_id_",
"ns" : ...

