If I SELECT... FOR UPDATE a row in a transaction, it will obviously block the row from being written to, but will it disallow reads as well? I'd prefer to still be able to read from the row, so if the answer is yes, can you provide a solution to work this?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
You can read just fine. There are lock modes that prevent reading but this isn't one of them. http://www.postgresql.org/docs/current/static/explicit-locking.html |
||||
|

READ UNCOMMITTED– OMG Ponies Aug 19 '12 at 19:55READ UNCOMMITTED(which is not surprising considering that MS SQL Server is derived from it), and I have actually had to use it. We brought up a web site that was read-only, where queries tended to be from a table down a bit in the schema structure, while the replication was happening as on the source, from the top down. Deadlocks galore. We had to change all indexes toUNIQUE(by adding any missing PK columns) and use RU isolation. MVCC databases are much nicer in this regard, no need to degrade isolation level. – kgrittn Aug 20 '12 at 19:31