MySQL Forums
Forum List  »  Performance

Re: Point of sale system performance issues in MYSQL
Posted by: Tod Harter
Date: June 02, 2005 02:50PM

mainly index invoicedate. 40k records isn't really a LOT of data, I'd set my key_cache to a pretty decent size to help optimize those searches as well. Make sure the way your queries and your index etc is organized works, ie use EXPLAIN and esp make sure as many as possible queries use indexes. What you probably don't want is long slow table scan SELECTS which are going to be starved by your INSERTS.

If you never do deletions you might consider using a MyISAM table as well because in that case you can have inserts and selects fully parallelized. OTOH InnoDB may work better because of finer-grained locking.

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: Point of sale system performance issues in MYSQL
1541
June 02, 2005 02:50PM


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.