1
Fork 0

Add a Django tag

This commit is contained in:
Jake Howard 2020-08-16 15:16:34 +01:00
parent b62ca2b263
commit 2a49d4eaeb
Signed by: jake
GPG key ID: 57AFB45680EDD477
3 changed files with 7 additions and 2 deletions

View file

@ -1,7 +1,7 @@
---
title: Django 2.2
date: 2019-04-01
tags: [programming]
tags: [programming, django]
---
April marks the release of Django 2.2, the latest LTS version of the popular Python web framework. Django 2.2 marks almost two years of development since the last LTS release, 1.11 in April 2017, and brings with it some very large improvements and changes which naturally come with a major version bump.

View file

@ -1,7 +1,7 @@
---
title: Django ORM Performance
date: 2020-06-07
tags: [programming]
tags: [programming, django]
---
Django already does some pretty incredible things when it comes to performance, especially in the ORM layer. The lazy loading, fluent interface for querying means it'll only fetch the data you need, when you need it. But it can't handle everything for you, and often needs some help to work out what you're doing, and what exactly it can optimize. Performance isn't all about moving your computation into the database from python-land, or reducing the number of queries, but more often than not, it really helps.

View file

@ -0,0 +1,5 @@
---
title: Django
---
https://www.djangoproject.com/