MySQL Forums
Forum List  »  Performance

Re: write/insert performance problem (not solved for me)
Posted by: James Day
Date: April 24, 2005 03:49PM

Instead of autocommit on you might consider autocommit off but SELECT ... FOR UPDATE during the transaction when you're verifying the key data. If you're typically inserting many rows in a batch you could also consider LOCK TABLE, insert a batch from one client, then release the lock and let another client do some inserts.

Options: ReplyQuote


Subject
Views
Written By
Posted
6216
April 07, 2005 11:38PM
2322
April 10, 2005 07:50PM
2279
April 10, 2005 10:11PM
Re: write/insert performance problem (not solved for me)
2114
April 24, 2005 03:49PM


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.