Django 4.0 Alpha Released

Looks like you followed a bad link. If you think it’s our fault, please let us know. Read more

Similar

Tips to optimize your Django SQL queries

When you first start with Django you will probably find the ORM to be an amazing feature. I agree with that, but the issue with ORMs is that it is too easy to forget that at the end the ORM generate SQL queries. Django has no way to optimize those … (more…)

Read more »

Postgres Full-Text Search with Django

Django has added support for Postgres's built-in full-text searching as of version 1.10. This is a great alternative to a heavier search system such as elasticsearch or SOLR, when we want decent search capabilities without having to setup and maintain ano... (more…)

Read more »