Is it possible to lock a table such that the holder can read and write, and other sessions can only read?

The documentation seems to suggestion that a read lock allows everyone to only read, and a write lock allows only the holder to read and write and other sessions have no access. Seems like having the holder able to read and write and other sessions only able to read would be a pretty frequently needed behavior -- perhaps the most frequently needed behavior.

Maybe the performance hit in implementing this scenario would be too high?

link|improve this question

68% accept rate
feedback

2 Answers

Take a look at LOCK IN SHARE MODE.

This will let you set non blocking read locks.

But remember, this can lead to deadlocks! Make sure you are okay with processes having out of date information.

link|improve this answer
Can I lock an entire table with this? – John Bachir Oct 25 '11 at 14:46
1  
sure, just do begin transaction; select * from table lock in share mode. But you are better off just doing a lock table then. dev.mysql.com/doc/refman/5.0/en/lock-tables.html – Byron Whitlock Oct 25 '11 at 21:23
I think your select * solution would still allow inserts though. and the lock table command is what my question is referring to... – John Bachir Oct 25 '11 at 21:34
As long as you call begin transaction first, inserts by other processes will not be allowed with lock in share mode. To lock a table so noone can write, but others can read, call LOCK TABLES <table> as read_lock READ The docs are pretty clear on that. – Byron Whitlock Oct 26 '11 at 18:51
So to summarize use LOCK IN SHARE MODE for row level locks, and LOCK TABLES ... READ to lock an entire table. Both commands allow other processes to read but not write. – Byron Whitlock Oct 26 '11 at 18:52
show 5 more comments
feedback

You may find that the InnoDB engine does what you need by default: writes do not block reads. You need to be careful with the transaction isolation level so that writes are available when you want them.

link|improve this answer
Interesting. Do you know where I can read about this? – John Bachir Oct 25 '11 at 14:47
I'm familiar with that, but afaik that's only relevant to row locking. if the implication in the docs is that it applies identically to both cases, it's very subtle... – John Bachir Oct 26 '11 at 0:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.