John Miller
Auto Optimize Your MySQL Tables Script
| Average rating: Rate this article |
In my quest to make our clients MySQL driven ecommerce websites running fast, I've pieced together a script and cron job that will save you some support calls down the road.
Step 1: Create a PHP optimize script
<?
// Change vars as needed here
$server = "localhost";
$user = "mysql_user";
$pwd = "mysql_password";
$dbName = "mysql_dbName";
$link = mysql_connect($server, $user, $pwd);
if (!
$link) {
die(
'Could not connect: ' . mysql_error());
}
$db_selected = mysql_select_db($dbName, $link);
if (!
$db_selected) {
die (
'Can\'t use $dbName : ' . mysql_error());
}
// Find all tables in the selected DB
$alltables = mysql_query("SHOW TABLES");
// Process all tables.
while ($table = mysql_fetch_assoc($alltables))
{
foreach (
$table as $db => $tablename)
{
// Optimize them!
mysql_query("OPTIMIZE TABLE '".$tablename."'")
or die(
mysql_error());
}
}
mysql_close($link);
?>
Step 2: Add this script into your daily cron jobs
Most popular Linux distros will have a /etc/cron.daily directory. Login as root and follow these steps to add your new website optimization script to your daily cron directory, thus never having to worry about manually optimizating again! cd /etc/cron.daily
echo '#!/bin/sh' > mysql_optimize; echo '/path/to/your/script.php' >> mysql_optimize; chmod 755 mysql_optimize;
Now your all set! A quick and easy way to keep your high volume MySQL driven websites optimized!
We have found this script/cron to be very valuable with our high load web design projects that use large MySQL tables. It is most effective on tables that get updated a lot (with deletions and inserts).
Print this article Bookmark:
About The Author
Rate This Article
Use your mouse pointer to select as many stars as you want, and press the left mouse button to vote.
Other PHP Articles
Rating: 5 stars |
Writing a SEO-friendly Title by Richard Neuman (May 25, 2008) |
| Picture thousands of tiny Google Robots scouring the web for relevant content to match up with millions of searches. When Googlebot finds your website, the most important information it collects, are the Page Titles... | |
Rating: 4.6 stars |
43 Tips for Optimizing PHP code by Reinhold Weber (Oct 18, 2007) |
| Here is the list of 43 short tips you can use for writing an optimized and more efficient PHP code.. .. | |
Rating: 4.5 stars |
Content Compression Using PHP by Paul Katsande (Mar 3, 2007) |
| HTTP 1.0 introduced the idea of content encodings. A browser/client can notify the server that it can accept compressed content by sending the Accept-Encoding header. The Accept-Encoding header can be set as follows Accept-Encoding: gzip,deflate or with just one of gzip or deflate... | |
Rating: 3.9 stars |
3 Simple Ways to restrict access to your webpages using PHP by wmtips.com (Nov 21, 2006) |
| Why do you need to restrict access to some of your scripts or webpages? There are can be several reasons to do this: You can use some open-source php script (for example, statistics frontend), and you can not be fully assured that your data completely safe... | |
Rating: 4.5 stars |
Regular expressions made easy by wmtips.com (Nov 19, 2006) |
| Regular expressions is a very powerful instrument to manipulate and extract strings. However not all PHP developers know how to use regular expressions, so this simple tutorial is intended to everyone who wants to learn them... | |

Tips & Tricks
Webmaster Tools
Sponsors
Featured book
Subscribe
Statistics
Validate