canoe
canoe

Reputation: 1293

mongo_mapper or mongoid with rails4

The ORM mongo_mapper and mongoid both support ruby on rails. However, after reading their documents I still cannot make a decision which one to use to develop a new application with rails4.

Any suggestion?

Upvotes: 10

Views: 4785

Answers (1)

user2503775
user2503775

Reputation: 4367

I have used MongoMapper but decided to migrate to MongoId. both of them are great MongoDB Libraries for Ruby, but after reading a lot about the difference, I ended up using mongoid because of this.

You can find some differences between those MongoDB Libraries here, and decide which of them is more suitable to your requirments:

Upvotes: 11

Related Questions