MySQL Forums
Forum List  »  Performance

Re: Optimize multiple writes on the same row
Posted by: Rick James
Date: March 23, 2012 11:35AM

"Concurrent updates" are impossible. At some low level, the row (InnoDB) or table (MyISAM) will have to be locked to do one update. After the lock is released, the other 'concurrent update' can lock the row/table.

InnoDB should be better than MyISAM because updates to _different_ rows can run 'concurrently'.

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: Optimize multiple writes on the same row
1180
March 23, 2012 11:35AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.