prom icon indicating copy to clipboard operation
prom copied to clipboard

Let's do some locking

Open Jaymon opened this issue 8 years ago • 0 comments

We should be able to pass in serializable=True to the transaction method to cause the begin to do:

BEGIN ISOLATION LEVEL SERIALIZABLE;

Also, it would be cool to add a .lock() method to query that would cause it to add the FOR UPDATE at the end:

SELECT balance FROM accounts WHERE user_id = 1 FOR UPDATE;

via

Jaymon avatar Oct 17 '15 02:10 Jaymon