![]() |
|
No such thing as a small change | |
PerlMonks |
Re: Re: Migrating to static structure?by physgreg (Scribe) |
on Aug 01, 2002 at 12:17 UTC ( #186748=note: print w/replies, xml ) | Need Help?? |
You might also try running EXPLAIN on your MySQL queries, then putting in appropriate indices. This will make selects much quicker, but inserts slightly slower. It sounds like you are doing quite a few more rows than you need. If you decide to use indices, be careful with LIKE clauses, as initial wildcards (LIKE %foo) won't use them.
In Section
Seekers of Perl Wisdom
|
|