Mongoid (pronounced mann-goyd) is an Object-Document-Mapper (ODM) for MongoDB written in Ruby. The philosophy of Mongoid is to provide a familiar API to Ruby developers who have been using Active Record or Data Mapper, while leveraging the power of MongoDB's schemaless and performant document-based ...
33
votes
11answers
8k views
Mongoid or MongoMapper?
I have tried MongoMapper and it is feature complete (offering almost all AR functionality) but i was not very happy with the performance when using large datasets. Has anyone compared with Mongoid? ...
12
votes
2answers
249 views
Managing mongoid migrations
Can someone give me a short introduction to doing DB migrations in Rails using Mongoid? I'm particularly interested in lazy per document migrations. By this, I mean that whenever you read a document ...
12
votes
8answers
2k views
What is your prefered ODM in Ruby ? MongoMapper, MongoID or MongoDoc?
In ruby, there are currently 3 ODM maintained:
MongoMapper
Mongoid
MongoDoc
What is your prefered and why ?
10
votes
3answers
2k views
Mongo DB Design, embedding vs relationships
I'm building a simple accounting system where a user has many bills. Now I'm trying to decide if bills should be its own collection, or nested within the user. I'm leaning towards the former but ...
10
votes
1answer
2k views
Does Mongoid have Map/Reduce?
I am using Ruby code to calculate sum from the array returned by Mongoid.
But maybe using Map/Reduce can be faster, except I don't see any docs for Map Reduce on mongoid.org and Google for
map ...
10
votes
4answers
7k views
heroku mongohq and mongoid Mongo::ConnectionFailure
UPDATE 22th jan 2011:
Uri now takes precedence in mongoid.yml
https://github.com/mongoid/mongoid/issues/issue/266
UPDATE 12th aug 2010: Although I got an accepted answer 6th may from Jackues ...
9
votes
4answers
3k views
How to reference an embedded document in Mongoid?
Using Mongoid, let's say I have the following classes:
class Map
include Mongoid::Document
embeds_many :locations
end
class Location
include Mongoid::Document
field :x_coord, :type => ...
9
votes
2answers
3k views
Batch insert/update using Mongoid?
I googled and all others, but I didn't find the answer. The question is:
Hi, how can I do batch insert with Mongoid to MongoDB?
8
votes
1answer
60 views
How to save Mongoid foreign_key as integer or keep the parent model have Integer id
Here is the situation.
user embed_one profile
profile belongs_to city
I have populated a city table with
id as Integer
name as String
Now I am doing
...
8
votes
1answer
928 views
How to fabricate Mongoid document with embedded document using Fabrication?
I use Mongoid and Fabrication gems. I have switched to Mongoid.rc7 from beta20 and now I can't fabricate document with embedded document:
#Models
class User
include Mongoid::Document
embeds_many ...
8
votes
2answers
956 views
Mongoid finders not working?
Hey all
I have set up a rails3+mongoid application and when I open the rails console, none of the finders seem to work - http://d.pr/FNzC
User.all
User.find(:all, :conditions => { first_name => ...
7
votes
2answers
282 views
MongoDB keeps querying namespaces
In my rails app I'm using mongoid and in the logs before pretty much every query, even on the same request, it also does
MONGODB dbname['system.namespaces'].find({})
What is this doing? Is this a ...
7
votes
2answers
440 views
single table inheritance with embeds_one mogoid
I have a model
class Post
include Mongoid::Document
include Mongoid::Timestamps
embeds_one :comment
end
and I have comment class
class Comment
include Mongoid::Document
include ...
6
votes
1answer
508 views
Factory Girl + Mongoid embedded documents in fixtues
Lets say you have the following mongoid documents:
class User
include Mongoid::Document
embeds_one :name
end
class UserName
include Mongoid::Document
field :first
field ...
6
votes
1answer
52 views
pfeed with mongoid
I am trying to integrate pfeed plugin in mongoid. Is there any way to do it? Or is there any gem or plugin similar to pfeed in rails?
6
votes
6answers
234 views
block the creation of multiple object of a class
How do I limit the object of any class to one. My class looks like :
class Speaker
include Mongoid::Document
field :name, :type => String
end
I just want to let a single instance of speaker ...
6
votes
2answers
941 views
mongoid query caching
Rails' ActiveRecord has a feature called Query Caching (ActiveRecord::QueryCache) which saves the result of SQL query for the life-span of a request. While I'm not very familiar with the internals of ...
6
votes
3answers
1k views
Mongoid date range query
I can't seem to find anything to make a date range query using Mongoid/Rails. Below are some queries I've tried (among about 100 others). If it returns anything, it always ignores the 'end_date'. Both ...
6
votes
1answer
936 views
mongoid find VS where
i seem to only be having this issue with 1 particular model when i am searching by ID
>> Cart.where(:_id => '4dae5902e1607c232c000009').first
=> #<Cart _id: 4dae5902e1607c232c000009, ...
6
votes
1answer
706 views
mongoid multi parameter attributes problem with date
I have been following the mongoid railscast and I am facing a multi parameter attributes problem when i add a new field field :published_on, :type => Date
...
6
votes
1answer
1k views
Rails 3: how to use active record and mongoid at the same time
I read alot that folks recommend using nosql together with sql datastores. For example have some reporting audit-trailing or log information in mysql and some threaded hierarchical data in mongodb.
...
6
votes
0answers
333 views
'ERROR Mongo::OperationFailure' from Cucumber testing with rails on mongoid-gridfs
I am getting this weird error while running cucumber test:
ERROR Mongo::OperationFailure: Database command 'filemd5' failed: {"errmsg"=>"exception: best guess plan requested, but scan and order ...
6
votes
2answers
3k views
User auth example in Rails 3, using Devise, OmniAuth, Mongoid, and JSON responses
I have integrated Devise and OmniAuth with my Mongoid ORM setup using the following examples:
https://github.com/plataformatec/devise/wiki/Example-Applications
My client code is mostly JavaScript ...
6
votes
2answers
2k views
Query on Mongoid Hash Field
I want to query on a Hash field for a Mongoid Class. I'm not sure how I can do this with conditions?
Here is an example:
class Person
include Mongoid::Document
field :things, :type => Hash
...
6
votes
3answers
1k views
Does anybody have any tips for managing polymorphic nested resources in Rails 3?
in config/routes.rb:
resources posts do
resources comments
end
resources pictures do
resources comments
end
I would like to allow for more things to be commented on as well.
I'm currently ...
6
votes
2answers
756 views
Need advice on MongoDB Schema for Chat App. Embedded vs Related Documents
I'm starting a MongoDB project just for kicks and as a chance to learn MongoDB/NoSQL schemas. It'll be a live chat app and the stack includes: Rails 3, Ruby 1.9.2, Devise, Mongoid/MongoDB, ...
6
votes
4answers
3k views
How to implement mongoid many-to-many associations?
I want to port a social network to Mongoid. The join table between friends is very large. Is there any way for Mongoid to handle this join table out of the box? I've seen a couple of in-model ...
5
votes
1answer
273 views
MongoDB and Mongoid in production
I am deploying my first little app with MongoDB and Mongoid as a driver.
What is the right secure way to use MongoDB in production?
I mean in the development I have just started mongod and that's it ...
5
votes
1answer
720 views
Why am I getting the error “db_name must be a string or symbol”?
Quick version (for those familiar with Mongoid & Sinatra): If it's not the Psyche/Syck YAML-parsing issue, why else might I get this error when trying to connect to a MongoDB database using ...
5
votes
1answer
658 views
How can I use Mongoid and ActiveRecord in parallel in Rails 3?
I'm using rails 3, and began my application with ActiveRecord. Now, I have many models, and the relations are starting to get complicated, and some could be more simply expressed with a ...
5
votes
2answers
322 views
Using Active Record generators after Mongoid installation?
I'm using MongoDB via Mongoid integration, as well as ActiveRecord in a project. I would like to generate migrations for active record, and Mongoid is the default when I run.
rails g migration
Any ...
5
votes
3answers
1k views
Forms to create and update Mongoid array fields
I've been struggling to create a form for a Mongoid model that has an array field. I want my form to have on text box per entry in the array. If I'm creating a new record, the default will be one ...
5
votes
2answers
718 views
Dynamic fields with Rails 3
I have a design issue I want to walk through.
I'm building a Rails 3 app which will hold products from a variety of different companies. I'd like to define a large set of fields and each product can ...
5
votes
1answer
340 views
mongoid inheritance problem
I have a model like this
class Canvas
include Mongoid::Document
field :name
referenced_in :hero
end
class Browser < Canvas
field :version, :type => Integer
end
class Hero
include ...
5
votes
1answer
1k views
Carrierwave - Error when processing images
The problem is the following error which is thrown on mongoids save! action.
Mongoid::Errors::Validations: Validation failed - Img failed to be processed.
...
5
votes
3answers
1k views
Mongo ids leads to scary URLs
This might sound like a trivial question, but it is rather important for consumer facing apps
What is the easiest way and most scalable way to map the scary mongo id onto a id that is friendly?
...
5
votes
2answers
669 views
Question regarding chaining multiple any_of criteria #Mongoid
I have a requirement where I need to run a MongoDB query like the following:
db.collection.find({ $or : [{"field1" : "value1"}, {"field2" : "value2"}],
$or : [{"field3" : "value3"}, {"field4" : ...
5
votes
2answers
1k views
How to do proper database testing (TDD) on Rails 3 using MongDB through MongoID
How would go about writing proper unit testing (and integration testing for that matter) using MongoDB through MongoID on rails ?
I am asking, because to the opposite of using let's say Sqlite3, even ...
5
votes
6answers
871 views
N+1 problem in mongoid
I'm using Mongoid to work with MongoDB in Rails.
What I'm looking for is something like active record include. Currently I failed to find such method in mongoid orm.
Anybody know how to solve this ...
5
votes
1answer
1k views
Why MongoDB can create unique index but Mongoid cannot?
In the MongoDB shell, if I do the following, then an index is created, and also prevent duplicate records from being inserted:
db.analytics.ensureIndex({page: 1, some_id: 1, ga_date: -1}, {unique: ...
5
votes
3answers
4k views
Dynamic attributes with Rails and Mongoid
I'm learning MongoDB through the Mongoid Ruby gem with Rails (Rails 3 beta 3), and I'm trying to come up with a way to create dynamic attributes on a model based on fields from another model, which I ...
4
votes
1answer
191 views
How to test Mongoid::Observer with rspec
On a simple mongoid data model with a user that has many comments, I want to award the user with a specific badge when he writes at least 1 comment. So I set up an observer like this :
class ...
4
votes
3answers
62 views
get model with atleast one relation object in mongoid
I have a Person object which has_many companies. I would like to get the person with atleast one company.
What I can get right now is
Person.where(:company_ids.size => 1)
This will return all ...
4
votes
2answers
178 views
soft deleting mongoid document along with associated documents
I have 2 models, user and posts
class User
include Mongoid::Document
include Mongoid::Paranoia
references_many :posts, :autosave => true, :dependent => :destroy
end
class Post
include ...
4
votes
2answers
420 views
Finding mongoDB records in batches (using mongoid ruby adapter)
Using rails 3 and mongoDB with the mongoid adapter, how can I batch finds to the mongo DB? I need to grab all the records in a particular mongo DB collection and index them in solr (initial index of ...
4
votes
1answer
949 views
How to implement has_many :through relationships with Mongoid and mongodb?
Using this modified example from the Rails 3 guides, how does one model a relational "has_many :through" association using mongoid?
The challenge is that mongoid does not support has_many :through as ...
4
votes
2answers
155 views
Timestamp not updating in RoR application
I have a small site that sorts news topics by date of submission to the second. Locally, this works fine. Even when rapidly posting stories in a row there is a difference in the time stamp.
Example:
...
4
votes
3answers
1k views
Querying embedded objects in Mongoid/rails 3 (“Lower than”, Min operators and sorting)
I am using rails 3 with mongoid.
I have a collection of Stocks with an embedded collection of Prices :
class Stock
include Mongoid::Document
field :name, :type => String
field :code, :type ...
4
votes
3answers
346 views
mongoid update_attributes changing datatypes
Im creating a simple rails app to modify data in an existing mongo database. I'm using mongoid for the interaction and can read/destroy objects just fine.
The problem comes is my mongo document has ...
4
votes
2answers
2k views
How to get list of mongodb databases and collections list from a ruby on rails app
I am using Rails 3 and Mongoid gem. But I need to fill a combobox with the list of mongodb databases. In mongodb shell we can list databases with "show dbs" command. Also there is getDBNameList() and ...