In ruby, there are currently 3 ODM maintained:

What is your prefered and why?

link|improve this question
Why don't they merge themselves into one MongoDocuments? I think that would boost up development and the popularity. – never_had_a_name Sep 4 '10 at 20:11
MongoDoc and MongoId have merge. But MongoMapper and Mongoid are really different. So It's normal to have 2 projects – shingara Sep 7 '10 at 8:17
feedback

8 Answers

In my opinion it's hard to say which is better, if you have DataMapper experience you'll like MongoMapper, but if you used ActiveRecord, Mongoid it's your preferred choice. I believe all of them worths a try concerning the context where you want to use them.

link|improve this answer
feedback

I just chose MongoID for a new Rails 3 project based on the none-technical argument that it has the best documentation.

Since I am new to mongoDB (with many years of MySQL and a littlebit of CouchDB experience) I needed good guides, that take me by the hand and help me deliver something working in withing a reasonable span of time.

AFAIK MongoID has just that: a nice looking site, with welldocumented guides for newbies like me.

link|improve this answer
feedback

I am using MongoMapper. It good except it is little slow with Time conversions. And it loads all data as Array. MyCollection.all for example gives you huge array, not cursor.

while Mongoid says: - Optimized for use with extremely large datasets.

So I guess you could try MongoID if you need speed and have big recordsets.

link|improve this answer
The performance test inside MongoMapper is must quick than MongoID – shingara Mar 17 '10 at 9:12
feedback

I was trying MongoMapper, but I think I'll go with Mongoid, because after quick reading docs it seems to me somewhat easier. Plus, it's developed by guys from Hashrocket, so that's a good reason itself.

link|improve this answer
feedback

While not a direct answer to your question, I would also consider using the basic ruby driver directly. Unlike the various SQL adapters out there Mongo's ruby class is easy to use and powerful. Because queries are hashes, composing queries is generally easy. The real advantage is access to the Atomic Modifiers. If you benefit from a Document database, these modifiers should be in your toolbox.

Having said this, I will go ahead and recommend MongoMapper because it has cleaner integration with the non-CRUD parts of MongoDB. Both projects are making gains in this area, and the situation may have changes since I did my research in December 2010.

link|improve this answer
feedback

Code Stats for Mongoid and MongoMapper enter image description here

It looks like MongoMapper has much better code quality (if it does the same with less).

Here's the analyzer CodeStats https://github.com/alexeypetrushin/code_stats

link|improve this answer
2  
It's a well-known fact that shorter code doesn't always mean better performance. – Kelly Aug 19 '11 at 22:39
feedback

I can recommend MongoMapper, since it also works with rails3 (beta and master). I personally didn't try the other 2 mappers you mentioned, since MM works great in my workflow and the mailinglist is very active. Furthermore the codebase is really stable and the only issue is with rails3 master, so you should use fredwu's branch, which already includes fixes for the current rails3 master changes on form_for: http://github.com/fredwu/mongomapper.git

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.