Django 1.11 Adds Easier Database Indexes
Written by Kay Ewbank   
Friday, 14 April 2017

Django, the high-level Python Web framework that lets you create dynamic websites, has added new classes to make it easier to create database indexes.

Django 1.11 has been designated as a long-term support release, which means that it will receive security updates for at least three years after its release.

The improvements for database indexes come from a new django.db.models.indexes module  that has classes for index creation. You can create composite and custom indexes for databases to optimize databases queries and to speed up the response time from databases. The Index class creates a b-tree index, as if you used db_index on the model field or index_together on the model Meta class.

Another addition is support for Template-based widget rendering to make it easier to customize form widgets. The form rendering process can be customized at several levels: 

  • Widgets can specify custom template names.

  • Forms and widgets can specify custom renderer classes.

  • A widget’s template can be overridden by a project. (Reusable applications typically shouldn’t override built-in templates because they might conflict with a project’s custom templates.) 

Other improvements are aimed at working with data. You can now use subquery expressions to create explicit subqueries using the ORM, avoiding the need to drop into raw SQL. You can also add an explicit subquery to a QuerySet using the Subquery expression.

If you want to reference columns from an outer query in a queryset, there's now an OuterRef option that lets you reference a specific field. 

There's also a new Exists qualifier. This is a Subquery subclass that uses an SQL EXISTS statement to find out whether there's a matching row in a subquery. In many cases this should perform better than a subquery since the database is able to stop evaluation of the subquery when a first matching row is found.


 django

 

More Information

Django Release Notes

Related Articles

Django 1.3 released

Komodo 10.2 Adds Slack Sharing

To be informed about new articles on I Programmer, sign up for our weekly newsletter, subscribe to the RSS feed and follow us on Twitter, Facebook or Linkedin.

 

Banner


Deno Improves JSR Support
08/04/2024

Deno has been updated to improve JSR support, and to build on the Temporal API introduced in version 1.4.  Deno is the JavaScript and TypeScript runtime from the creator of Node.js.



Angular and Wiz To Merge
27/03/2024

Two web development frameworks used at Google are merging. One, Angular is open source and widely known, while the other, Wiz, is an internal web framework developed and used by Google for some o [ ... ]


More News

 

raspberry pi books

 

Comments




or email your comment to: comments@i-programmer.info

Last Updated ( Friday, 14 April 2017 )