christophsturm
04/30/2021, 1:42 PMtransaction(db) {..}
it will avoid threadlocals, but it seems that all exposed calls inside the transaction still get their transaction from a threadlocal. so it only works if the thread stays the same, and for example it wont work if i have callbacks (or coroutines) that potentielly run in different threads.Emil Kantis
04/30/2021, 5:00 PMsuspendedTransaction { }
when working with coroutinesBogdan
05/01/2021, 7:36 AMchristophsturm
05/01/2021, 1:14 PM