Thx, Lots of good info !!! did some reading on LOW_PRIORITY...
MySQL.org manual says "...LOW_PRIORITY should normally not be used with MyISAM tables as this disables concurrent INSERTs... "
Is this also true for "UPDATE" with MyISAM ?
Quote:
Originally posted by vanekl
If you're using InnoDB or BDB tables then wrap multiple updates in one transaction.
|
I read one post where person wrote if more than one LOW_PRIORITY updates have pilled up, it will auto-roll them into a single multi-INSERT statement. 1) this true? 2) works the same for UPDATESs? 3) is it still better to add UPDATES up in application memory and batch update every so often as oppsoed to use LOW_PRIORITY?
-Ziv.