We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60ef260 commit 70b882eCopy full SHA for 70b882e
1 file changed
content/pages/03-data/08-django-orm.markdown
@@ -176,3 +176,9 @@ following resources should get you past the initial hurdles.
176
added to an existing table, and another where a `Many-to-Many` field needs
177
to be converted to a standard `ForeignKey` column while retaining all
178
of the data.
179
+
180
+* [Double-checked locking with Django ORM](https://lukeplant.me.uk/blog/posts/double-checked-locking-with-django-orm/)
181
+ shows how you can implement a double-checking locking pattern in the
182
+ Django ORM with [PostgreSQL](/postgresql.html), which is useful
183
+ when you want to prevent multiple processes from accessing the same
184
+ data at the same time.
0 commit comments