I need to optimize MySQL on my machine, let me know if I'm doing everything right in the my.cnf.
Any MySQL experts?
Collapse
X
-
-
if you want to optimize your mysql db, my.cnf is the wrong place to look
what you need is called database normalization - you rework all your mysql tables so you don't have any duplicate entries.. it speeds everything up
if you want we can work something out, my icq 237635572.Comment
-
Originally posted by nbreakerif you want to optimize your mysql db, my.cnf is the wrong place to look what you need is called database normalization - you rework all your mysql tables so you don't have any duplicate entries.. it speeds everything up if you want we can work something out, my icq 237635572.
That I know and do. DB design I have mastered.Comment
-
There are many ways to optimize :
- MySQL specific stuff (like the server settings in my.cnf);
- SQL specific stuff (like database normalization in tables);
- General integrity specific stuff (like telling MySQL to optimize the tables after adding or deleting tons of rows so as to update indexes)
I guess it just depends on what you need done. Some are foundation-level stuff; others are housekeeping and maintenance, or adjusting to a higher load or added server RAM.rRhino.com ...social networking for book fans...Comment
-
Good stuff; you can hit me up anytime on ICQ when you're ready.rRhino.com ...social networking for book fans...Comment

Comment