|
|
|
|
|
by Quiark
335 days ago
|
|
while i'm currently using sqlite, since it has only one write transaction at a time, if I understand correctly, opening a tx and doing outside requests while in the transaction could potentially block your whole application if the outside requests keep timing out... so you kinda need to watch out for that |
|
This would be true for any database, something read / written during a transaction would block at least that table universally until the transaction is finalised.