Y
Hacker News
new
|
ask
|
show
|
jobs
by
Izkata
1386 days ago
One example: MySQL table locks. The application can do in parallel what the database can't.
1 comments
jve
1386 days ago
Locks ensure you get committed data back and not some data that is in-operation and may or may not end being persisted. If you don't care about it: SET SESSION TRANSACTION ISOLATION LEVEL READ UNCOMMITTED ;
And SQL can do parallel operations too.
link
And SQL can do parallel operations too.