How to get a little more concurrency / performance out of a database
The database should always be the bottleneck in any large scale web application. As such, it is becoming increasingly important to minimize concurrency and to eek out every last bit of performance from the database.
There are a set of techniques for improving concurrency in sql code. The one I have personally seen [...]