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
You can also change this per client / session using the django database options, like this:
DATABASE_OPTIONS = { "init_command": "SET storage_engine=INNODB, SESSION TRANSACTION ISOLATION LEVEL READ COMMITTED", }