Performance Tuning Best Practices for MySQL
February 6th, 2010 by CGI & PHP.com
Google techtalks April 28, 2006 Jay Pipes Jay Pipes is a co-author of the recently published Pro mysql (Apress, 2005), which covers all of the newest mysql 5 features, as well as in-depth discussion and analysis of the mysql server architecture, storage engines, transaction procesing, benchmarking, and advanced SQL scenarios. You can also see his name on articles appearing in Linux Magazine and can read more articles about mysql at his website. ABSTRACT Learn where to best focus your attention when tuning the performance of your applications and database servers, and how to effectively find the "low hanging fruit" on the tree of bottlenecks. It's not rocket science, but with a bit of acquired…
Popularity: 4% [?]

High Performance MySQL: Optimization, Backups, Replication, and More
Perl Best Practices
MySQL 5.0 Certification Study Guide
MySQL
MySQL Crash Course
The PHP Programming with MySQL





February 6th, 2010 at 8:01 am
Checkout my MYSQL Brute Force
watch?v=dMIjDgWbF98
February 6th, 2010 at 8:28 am
This is a really great presentation from a true MySQL pro (thanks Jay). It is a must for anyone interested in MySQL Performance.
Most of it still holds true, although it is 3 years now. A few things have happened, though, for example a number of new tools exist to make it easier discovering bad queries in your database – e.g. Jet Profiler for MySQL or Enterprise Monitor.
To stay updated with more performance stuff, do check out "MySQL Performance blog" and "Planet MySQL".
MySQL rocks.
February 6th, 2010 at 9:27 am
very much detailed and helpful….
February 6th, 2010 at 9:46 am
i love the fact that the top three categories of performance issues are all related to the SQL code (DML & DDL) which is used to build and query the database; this has always been my experience; if properly programmed, even an unscalable server (MsAccess, SQLite, dBase, …) can be pushed to its theoretical limit of performance; if poorly programmed, even a scalable server (Oracle, MsSqlServer, Sybase, …) can bog down and become unresponsive;
February 6th, 2010 at 10:14 am
Very informative…thanks
February 6th, 2010 at 10:14 am
Wow, thanks guys