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? Any performance gains ?

link|improve this question

69% accept rate
feedback

12 Answers

up vote 19 down vote accepted

I have used MongoMapper for awhile but decided to migrate to MongoId. The reason is hidden issues plus arrogance towards users. I had to jump through hoops to make MongoMapper work with Cucumber (succeeded in the end) and to put a couple of patches even the project was simple, but it's not the point. When I tried to submit a bug fix (due to incompatibility with ActiveRecord), they seemingly got pissed off that I found a problem and I was pushed around. While I was testing, I also encountered a major bug with their query implementation, while their testing was tuned in a way that the tests pass. After my previous experience, didn't dare to submit it.

They have a significantly lower number of pull requests and bug/feature submissions than MongoId, i.e. community participation is much lower. Same experience as mine?

I don't know which one has more features right now, but I don't see much future in MongoMapper. I don't mind fixing issues and adding functionality myself, but I do mind situations when they wouldn't fix bugs.

link|improve this answer
Can I ask you, what was the major bug in the query implementation. I have used mongomapper in a previous project, but it was also my first exposure to mongo at all. Any information on specific issues with mongomapper you had would be great. Thanks – Red Jan 20 at 4:43
When getting first() without sorting, it works as last() instead (or visa versa). But the unit test is written in the way that it specifies order, so it passes. May be it's fixed by now, but I don't use MongoMapper anymore. But I doubt it, I saw how it was implemented, and it's a bad design. – Aynat Mar 1 at 22:19
feedback

i've been using both for the past couple weeks. Mongomapper has better support for relational associations (non-embedded) and has greater third-party support. Mongoid has better query support, much better documentation (MM has close to none, though a website is supposedly in the works), Rail 3 support (and thus Devise support) and a slightly more active community on Google Groups.

I ended up going with Mongoid.

link|improve this answer
17  
Since I originally wrote this answer Mongoid has picked up lots of third-party support and the difference in the communities is even greater. In my opinion Mongoid is more of a clear choice today. Performance should be relatively the same as they both go through the Ruby driver. Though you need to be careful with OM not to construct horrendous documents. – Nader Feb 1 '11 at 0:53
1  
Thank you so much for updating your answer. So helpful. – ktkaushik Mar 12 at 17:17
feedback

Did you install mongo_ext? I think the performance is more related to the driver than the mapper itself. When looking at the mongo log, I can see without the extension, that the transer seems to have some lags.

Also do as they recommend on the monogdb site, select only the fields you need.

link|improve this answer
ruby driver is not that fast especially 1.8 but 1.9 just boosts the performance! i am just wondering if mongoid is more optimized or the only thing it offers is a different approach to quering and stuff for the time being mongomapper is almost feature complete offering almost all AR sugar – PanosJee Dec 26 '09 at 11:25
Note to those reading this over a year later: mongo_ext is no longer needed and has been rolled into the basic mongo gem. – allegroconmolto Nov 14 '11 at 4:37
feedback

Did some testing with MongoMapper last week, it was stable but I found the query interface a little limited (also some of the AR logic was quirky), switched to Mongoid today and it feels much better to use - and more intuitive if you are used to AR.

No speed conclusions yet - but the switch over was painless - it works with Rails 3 too.

link|improve this answer
feedback

I used both of them and they are about to equals in functionality, but look at it's code stats Mongoid vs MongoMapper

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

You can calculate this stats by Yourself, here's the analyzer https://github.com/alexeypetrushin/code_stats

link|improve this answer
Great hint! Thanx! – PanosJee Aug 4 '11 at 8:24
4  
Key point: 'if it does the same with less'... – allegroconmolto Nov 14 '11 at 4:34
3  
This seems completely unfounded. – jcm Jan 20 at 8:00
Can you explain more please? Is this the same project using each of those libraries? Is it an average character count across all github projects? From looking at this chart, couldn't I argue that people are writing much more complex projects using MongoID than using MongoMapper? (just asking. I'm actually a MM user right now) – willcodeforfood Feb 19 at 2:47
> Is this the same project using each of those libraries? It's a comparison of the size of source code of MongoMapper & Mongo. – Alexey Petrushin Feb 22 at 19:41
feedback

I think Mongoid is very better at configuration and mapping.

link|improve this answer
I think so too. Besides that it feels closer to NoSQL than MongoMapper that it makes you think more in terms of ActiveRecord and therefore SQL. Another plus is the great documentation – PanosJee Sep 13 '10 at 19:54
Yep! Mongoid website rocks with documentation! – rodrigoalvesvieira Sep 13 '10 at 20:50
feedback

If you're using Rails3 I'd recommend Mongoid -- it also uses "include" instead of inheritance "<" to persist classes -- using "include" is the better paradigm in Ruby for adding persistence. Mongoid works fine for me with Devise.

link|improve this answer
feedback

I would expect performance to be the same, last time I checked MongoMapper lacked Rails 3 support - so I am looking at Mongoid for now.

link|improve this answer
feedback

sudo gem install mongo_ext is key to getting performance.

MongoDB blows away CouchDB in terms of raw speed – though CDB does have its own set of advantages.

Benchmark: http://www.snailinaturtleneck.com/blog/?p=74

link|improve this answer
He's talking about mongoid x mongo_mapper, what is the faster ruby gem to access mongo, not mongodb x couchdb. – Victor Rodrigues Mar 8 '10 at 14:53
2  
Note to those reading this over a year later: mongo_ext is no longer needed and has been rolled into the basic mongo gem. – allegroconmolto Nov 14 '11 at 4:37
feedback

Devise did not support MongoMapper, and I too prefer moving in the Rails3 way. So I switched to mongoid.

link|improve this answer
feedback

Mongoid is having a full support with Rails3 and having identity map feature.

More document is at http://mongoid.org

See the performance here http://mongoid.org/performance.html

link|improve this answer
feedback

A difference I found is that update_attribute in MongoMapper appears to write the whole document, regardless of what attributes actually changed. In Mongoid it only writes the changed attributes. This can be a significant performance issue for large records. This is particularly true for embedded documents (here labels), e.g.

profile = Profile.find(params[:id])
label = profile.labels.find_or_create_by(idx: params[:idx])
# MongoMapper doesn't have find_or_create_by for embedded docs
# -- you'll have to write custom code
profile.save

On save, MongoMapper will save the whole profile record, but MongoId will use the $set operator with positional logic to only update the label that changed.

Another issue is selecting which fields to return. Both support an only criterion, but Mongoid also supports a without criterion, which is natively supported by Mongo.

It appears to me that Mongoid just is more "rounded" and complete in its API, which probably explains that it's a larger code base. It also appears documented better.

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.