Russ, you are right!

I have used Django MongoDB Engine. It works fine, but requires an older
version of Django and can't be updated. Some Django features (like
many-to-many, some admin features or strong ORM related) doesn't work fine
with MongoDB (and makes sense, it is NoSQL).

Today this is not my choice. I have several projects using MongoDB, my
first choice is to use Django as it is, without any modification on its
ORM, accessing a Postgres database and on those parts I need MongoDB, I
simply call pymongo inside of the Django views. You can also use
MongoEngine, an ORM-Like module.

My 2 cents.

Cheers


On 2 September 2013 09:38, Russell Keith-Magee <russ...@keith-magee.com>wrote:

>
> On Sat, Aug 31, 2013 at 6:22 PM, Timothy Makobu <
> makobu.mwambir...@gmail.com> wrote:
>
>> Hi,
>>
>> Is MongoDB support coming to standard Django?
>>
>
> There's nothing official being planned, and I'm not aware of any active
> efforts to add the features to Django's core.
>
> Christiano pointed you at some third-party projects that have attempted to
> integrate MongoDB into Django; I can't comment on how well they work, or
> how well they're being maintained.
>
> It's also worth pointing out that even if there isn't official Django
> support for MongoDB, you can still use Django. You just can't use anything
> ORM related, but you can still use Django's URL routing, forms,
> middlewares, cache layers, email tools, and so on. When you need to touch
> actual data, you use the native MongoDB APIs.
>
> Yours,
> Russ Magee %-)
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> For more options, visit https://groups.google.com/groups/opt_out.
>



-- 
Christiano Anderson
http://christiano.me/
http://twitter.com/dump/

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to