Do you know the default isolation level of the transactions used in Django? Is it possible to set the isolation level in the database independent way?
I\'m mainly in
(Sorry, i can't comment for Danhip) This solution wotked for me (mySQL), I added Peter's code in the DATABASE field:
DATABASES = { 'default': { (...) 'OPTIONS': { (...), "init_command": "SET storage_engine=INNODB, SESSION TRANSACTION ISOLATION LEVEL READ COMMITTED" }, } }