I'm trying to use mongodb together with django. I mainly use the admin app of django. I noticed that there are 2 mongodb orms for django.
- One is mongoengine, https://github.com/MongoEngine/mongoengine
- Another is mongodb-engine from the django-nonrel group. https://github.com/django-nonrel/mongodb-engine
What I want to know is that whether django's admin app works fine with the two. If not, which one is better.
Also, I want to know whether 3rd party apps would work if I use mongodb with django? Which of the two orms is more friendly with 3rd party apps?
At first glance, mongodb-engine seems to be more friendly, but it depends on django-nonrel, which is based on django 1.5. If I want to use recent version of django, mongoengine seems to be the better choice, also mongoengine development seems more active.