In ruby, there are currently 3 ODM maintained:
What is your prefered and why?
|
In ruby, there are currently 3 ODM maintained: What is your prefered and why? | |||||
feedback
|
|
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. | ||||
|
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. | ||||
|
feedback
|
|
I am using MongoMapper. It good except it is little slow with Time conversions.
And it loads all data as Array. 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. | |||
|
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. | |||
|
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. | ||||
|
feedback
|
|
Code Stats for Mongoid and MongoMapper
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 | |||||
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 | |||
|
feedback
|
|
There's also MongodbModel http://alexeypetrushin.github.com/mongodb_model | ||||
|
feedback
|