--
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...@googlegroups.com.
To post to this group, send email to django...@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAJxq84-FKrcBeB5joYTAP97dreo5cDmu_2rxbutrQNm%3DAFru3g%40mail.gmail.com.
Django ORM is the best thing since sliced bread!
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAHKQagHijw7MKBN5p-Q86tQ21HuN%3D9cpiDiSpqdz8Fjx7-HvQw%40mail.gmail.com.
Hi,Re: the hacker news thread, (sorry for getting a little off topic,) I just wanted to mention a few places where we've tried to improve some of those things recently:- The ORM is still slow, but we've added prefetch_related() and improved select_related() which allows you do use fewer queries.
- We've pulled out some of components into separate projects: django-localflavor, django-contrib-comments, django-formtools, and I imagine more in the future.- You can now use custom user models.
- We're working on an official public API for the model._meta internals and working towards components only using that. It also means it will be easier to use non-django models in the admin.- We're working on de-coupling django templates, allowing them to be used on their own, and making it much easier to use other template engines like Jinja2.- There's are also quite a lot of people using django-rest-framework for creating REST apis, which was one thing the thread said django was not good at.