9 ms·
It also seems to have the same concurrency issues as described in the article. At least from my experience the "database is locked" error appears quite often.
by frodowtf 2y ago
It also seems to have the same concurrency issues as described in the article. At least from my experience the "database is locked" error appears quite often.
- hnfong 2y agoA rather late reply, but in case anyone is reading this.... Django is basically designed to have sqlite deadlocks, and there's a trivial fix (that the dev team refused to include) that allows fixes the problem and allows you to run up to moderate loads. https://centraltrunks.blogspot.com/2022/07/django-sqlite-database-is-locked-errors.html https://centraltrunks.blogspot.com/2022/07/django-sqlite-dat... https://code.djangoproject.com/ticket/29280 https://code.djangoproject.com/ticket/29280 (I authored the rant in the first link)