From 2a49d4eaeb7505265cb7d006ee5e332db266be9d Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Sun, 16 Aug 2020 15:16:34 +0100 Subject: [PATCH] Add a Django tag --- content/posts/django-22.md | 2 +- content/posts/django-orm-performance.md | 2 +- content/tags/django/_index.md | 5 +++++ 3 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 content/tags/django/_index.md diff --git a/content/posts/django-22.md b/content/posts/django-22.md index 9ed3e85..fef6cd7 100644 --- a/content/posts/django-22.md +++ b/content/posts/django-22.md @@ -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. diff --git a/content/posts/django-orm-performance.md b/content/posts/django-orm-performance.md index aaae4eb..7406fda 100644 --- a/content/posts/django-orm-performance.md +++ b/content/posts/django-orm-performance.md @@ -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. diff --git a/content/tags/django/_index.md b/content/tags/django/_index.md new file mode 100644 index 0000000..c61c1cb --- /dev/null +++ b/content/tags/django/_index.md @@ -0,0 +1,5 @@ +--- +title: Django +--- + +https://www.djangoproject.com/