django-optimistic-admin-pg
This app provides a couple of mixins to implement optimistic concurrency in the Django admin leveraging PostgreSQL specific features.
PostgreSQL implements an MVCC concurrency model, that means that rows are duplicated on update. PostgreSQL stores an id on each row to store the transaction identifier called xmin.
This application provides mixins for Django ModelForm and ModelAdmin using the xmin value to inhibit the saving of data via the Django admin if it has been updated in the meantime.
Notes on safety
Please note that this application does not remove completely the races between updates via the admin interfaces but it narrows them by a lot.
Similar Projects
django-concurrency implements the same pattern with batteries included in a database-independent way.
Requirements
The app is tested on Python 3.8+ with Django 3.2 and 4.0.
Setup
python -m pip install django-optimistic-admin-pg
How to use
This application provides a couple of mixins: one for ModelAdmin instances and one for ModelForm instances.
First a ModelForm inheriting from OptimisticAdminModelFormMixin should be used as form the
ModelAdmin.
A field called row_version should be added to this form in order to send the row version read
from the database.
Assuming you have forms in forms.py:
from django import forms
from optimisticadmin.mixins import OptimisticAdminModelFormMixin
class MyModelForm(OptimisticAdminModelFormMixin, forms.ModelForm):
row_version = forms.IntegerField(required=False, widget=forms.HiddenInput())
Then in admin.py your ModelAdmin need to inherit from OptimisticAdminMixin and use the form
implemented before:
from django.contrib import admin
from optimisticadmin.mixins import OptimisticAdminMixin
from .forms import MyModelForm
@admin.register(MyModel)
class MyModelAdmin(OptimisticAdminMixin, admin.ModelAdmin):
form = MyModelForm
Release files for django-optimistic-admin-pg 1.0.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| django-optimistic-admin-pg-1.0.0.tar.gz | 4.7 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| django_optimistic_admin_pg-1.0.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 9.5 kB
Release files / django-optimistic-admin-pg-1.0.0.tar.gz
| Download URL | django-optimistic-admin-pg-1.0.0.tar.gz |
|---|---|
| Size | 4.7 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
cbee6a3fe4c01b4809b33c790ff1052d2d407b53985b8d94f3ff31d0c9e0abc6
|
|
BLAKE2b-256 checksum How to use checksums |
ddfc4e30f069cefa4d66d0e9d127af68efc339c338296bfc7225e70a52237031
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.0 CPython/3.10.4
|
Release files / django_optimistic_admin_pg-1.0.0-py3-none-any.whl
| Download URL | django_optimistic_admin_pg-1.0.0-py3-none-any.whl |
|---|---|
| Size | 4.7 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
349c5f2af79fcda1013ae4b33e56158016f095cd65640e69a2f489c43cc337f4
|
|
BLAKE2b-256 checksum How to use checksums |
90c3699700f5d71f5fef6c6763fb75919c7b29ab99252868907e1f8b63b76ab9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.0 CPython/3.10.4
|