transaction_isolation icon indicating copy to clipboard operation
transaction_isolation copied to clipboard

Support for postgres deferrable serializable transaction mode

Open dspangen opened this issue 11 years ago • 0 comments

Postgres allows serializable transactions to declare that they are 'deferrable' (when also marked read-only), which allows a guarantee that the transaction will not fail with a serializability exception, and also provides better performance for such transactions. Read more here: http://www.postgresql.org/docs/9.2/static/sql-set-transaction.html

Any interest extending the gem to include this mode/ any guidance on where to include this functionality?

dspangen avatar Aug 21 '13 20:08 dspangen