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 ?
|
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. |
|||||||||||
|
|
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. |
|||||||||||
|
|
Differences MongoMapper
Mongoid
Similarities
Configuration MongoMapper
Mongoid
3rd Party Libraries Both sides have claimed to have better 3rd party support. Github reveals the following:
Notably, Devise does not support MongoMapper. Commit Activity Over the last year, it looks like Mongoid has been more regularly maintained and updated than MongoMapper. MongoMapper
Mongoid
|
||||
|
|
|
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. |
|||||
|
|
I used both of them and they are about to equals in functionality, but look at it's code stats
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 |
|||||||||||||||||||
|
|
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. |
|||
|
|
|
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. To improve performance, try to selectively use the lower-level access, e.g. Moped - I've seen this to be up to 10x faster |
||||
|
|
|
I think Mongoid is very better at configuration and mapping. |
|||
|
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. |
|||
|
|
|
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 |
|||||||
|
|
Devise did not support MongoMapper, and I too prefer moving in the Rails3 way. So I switched to mongoid. |
|||
|
|
|
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 |
|||
|
|
|
A difference I found is that
On Another issue is selecting which fields to return. Both support an 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. |
||||
|
|



