<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>jappler.com &#187; MySQL</title>
	<atom:link href="http://jappler.com/blog/archive/tag/mysql/feed" rel="self" type="application/rss+xml" />
	<link>http://jappler.com</link>
	<description>random and opinionated thoughts by Jennifer Zelazny</description>
	<lastBuildDate>Tue, 07 Sep 2010 20:54:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Quick Site Backup (files and database) Via the Command Line</title>
		<link>http://jappler.com/blog/archive/2008/02/25/quick-site-backup-files-and-database-via-the-command-line</link>
		<comments>http://jappler.com/blog/archive/2008/02/25/quick-site-backup-files-and-database-via-the-command-line#comments</comments>
		<pubDate>Mon, 25 Feb 2008 22:37:59 +0000</pubDate>
		<dc:creator>Jen</dc:creator>
				<category><![CDATA[HOWTOs]]></category>
		<category><![CDATA[Hints]]></category>
		<category><![CDATA[UNIX]]></category>
		<category><![CDATA[CLI]]></category>
		<category><![CDATA[export]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[tar]]></category>

		<guid isPermaLink="false">http://www.jappler.com/blog/archive/2008/02/25/quick-site-backup-files-and-database-via-the-command-line</guid>
		<description><![CDATA[If you do any sort of web development, it is more than likely that CPANEL and phpMyAdmin are good friends of yours&#8230;and you depend on them. Even though those are extremely handy to create/modify databases and create backups, it is extremely helpful to know how to do the same thing by using only SSH and [...]]]></description>
			<content:encoded><![CDATA[<p>If you do any sort of web development, it is more than likely that <a href="www.cpanel.net/">CPANEL</a> and <a href="http://www.phpmyadmin.net">phpMyAdmin</a> are good friends of yours&#8230;and you depend on them.  Even though those are extremely handy to create/modify databases and create backups, it is extremely helpful to know how to do the same thing by using only SSH and command line utilities.</p>
<p><strong>To backup  (export) a database using the command line interface (CLI):</strong></p>
<pre class="brush: plain;">
mysqldump -p --user=username --add-drop-table database &amp;gt; backup.sql
</pre>
<p>You will then need to provide your database password and the exported data will go into a file called &#8220;backup.sql&#8221; which is located in the directory that you are currently in.  (more <a href="http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html">mysqldump documentation</a></p>
<p><strong>To backup your files:</strong></p>
<pre class="brush: plain;">
tar -cvzf backup.tgz directoryname
</pre>
<p>The command will create an archive of all your files so you can easily move or store one file (the archive).  More <a href="http://unixhelp.ed.ac.uk/CGI/man-cgi?tar">tar documentation</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://jappler.com/blog/archive/2008/02/25/quick-site-backup-files-and-database-via-the-command-line/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>repairing a mysql table</title>
		<link>http://jappler.com/blog/archive/2008/01/14/repairing-a-mysql-table</link>
		<comments>http://jappler.com/blog/archive/2008/01/14/repairing-a-mysql-table#comments</comments>
		<pubDate>Mon, 14 Jan 2008 20:26:21 +0000</pubDate>
		<dc:creator>Jen</dc:creator>
				<category><![CDATA[Hints]]></category>
		<category><![CDATA[jappler.com]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.jappler.com/blog/archive/2008/01/14/repairing-a-mysql-table</guid>
		<description><![CDATA[I have run into some database problems over the years, but had to do something different today when I saw that this site had a problematic table (wp_posts). When I looked at the issue first, I got the message &#8220;MySQL error code 145 = Table was marked as crashed and should be repaired&#8221;. To repair [...]]]></description>
			<content:encoded><![CDATA[<p>I have run into some database problems over the years, but had to do something different today when I saw that this site had a problematic table (wp_posts).  When I looked at the issue first, I got the message &#8220;MySQL error code 145 = Table was marked as crashed and should be repaired&#8221;.</p>
<p>To repair a table, I have run (at a mysql prompt in the command line): REPAIR TABLE wp_posts; but today that did not work.  After doing some research, I finally was able to fix the table by using: myisamchk -r wp_posts (<a href="http://dev.mysql.com/doc/refman/5.0/en/repair.html">see documentation</a>.  This was a lifesaver!</p>
]]></content:encoded>
			<wfw:commentRss>http://jappler.com/blog/archive/2008/01/14/repairing-a-mysql-table/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>apache, mysql, php update.</title>
		<link>http://jappler.com/blog/archive/2007/12/17/apache-mysql-php-update</link>
		<comments>http://jappler.com/blog/archive/2007/12/17/apache-mysql-php-update#comments</comments>
		<pubDate>Mon, 17 Dec 2007 19:13:59 +0000</pubDate>
		<dc:creator>Jen</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Content Management Systems]]></category>
		<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[jappler.com]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[updates]]></category>
		<category><![CDATA[XOOPS]]></category>

		<guid isPermaLink="false">http://www.jappler.com/blog/archive/2007/12/17/apache-mysql-php-update</guid>
		<description><![CDATA[Finally after two years of contemplating the updates to Apache 2.x, MySQL 5.x, and PHP 5.x, I finally updated my server to the latest version os Apache, MySQL, and PHP. I was not too concerned about custom work or any of my WordPress sites, but I was concerned XOOPS and/or XOOPS modules would have some [...]]]></description>
			<content:encoded><![CDATA[<p>Finally after two years of contemplating the updates to Apache 2.x, MySQL 5.x, and PHP 5.x, I finally updated my server to the latest version os Apache, MySQL, and PHP.  I was not too concerned about custom work or any of my WordPress sites, but I was concerned XOOPS and/or XOOPS modules would have some problems, but it is now a week later and everything is running smoothly. Why finally?  Well, as of the end of this month, <a href="http://www.php.net/downloads.php#v4"> support for PHP 4 will be discontinued</a>.  Better late than never.  Time to update your servers too?</p>
]]></content:encoded>
			<wfw:commentRss>http://jappler.com/blog/archive/2007/12/17/apache-mysql-php-update/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Out of Disk Space</title>
		<link>http://jappler.com/blog/archive/2007/10/23/out-of-disk-space</link>
		<comments>http://jappler.com/blog/archive/2007/10/23/out-of-disk-space#comments</comments>
		<pubDate>Tue, 23 Oct 2007 14:37:30 +0000</pubDate>
		<dc:creator>Jen</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Hints]]></category>
		<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Serenity Now!]]></category>
		<category><![CDATA[jappler.com]]></category>
		<category><![CDATA[database errors]]></category>
		<category><![CDATA[disk space]]></category>
		<category><![CDATA[Liquid-Web]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.jappler.com/blog/archive/2007/10/23/out-of-disk-space</guid>
		<description><![CDATA[If you all the sudden get database errors (select, cannot login, cannot write, etc) &#8211; and everything looks ok (from the database end of things) check to make sure you have not run out of disk space. How do I know? Well &#8211; let&#8217;s say last night I had to do a major fall clean-up. [...]]]></description>
			<content:encoded><![CDATA[<p>If you all the sudden get database errors (select, cannot login, cannot write, etc) &#8211; and everything looks ok (from the database end of things) check to make sure you have not run out of disk space. How do I know?  Well &#8211; let&#8217;s say last night I had to do a major fall clean-up. If you know me and my monitoring habits, this will sound a bit confusing because one of the many things I monitor is disk space, but when your hosting company accidentally halves your disk space &#8211; trouble can occur, and quickly.  I have not had many issues at all with <a href="http://www.liquidweb.com">Liquid Web</a> &#8211; but this was major&#8230;and handled a little slower than I would have liked.</p>
]]></content:encoded>
			<wfw:commentRss>http://jappler.com/blog/archive/2007/10/23/out-of-disk-space/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mysql tips.</title>
		<link>http://jappler.com/blog/archive/2007/02/01/mysql-tips</link>
		<comments>http://jappler.com/blog/archive/2007/02/01/mysql-tips#comments</comments>
		<pubDate>Thu, 01 Feb 2007 12:29:15 +0000</pubDate>
		<dc:creator>Jen</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Hints]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.jappler.com/blog/archive/2007/02/01/mysql-tips</guid>
		<description><![CDATA[After several days of researching and reading about how to solve a MySQL replication problem, I found a great resource on MySQL I thought I would share: MySQL Tips.]]></description>
			<content:encoded><![CDATA[<p>After several days of researching and reading about how to solve a <a href="http://dev.mysql.com/doc/refman/5.0/en/replication.html" title="MySQL Replication">MySQL replication</a> problem, I found a great resource on <a href="http://www.mysql.com" title="MySQL">MySQL</a> I thought I would share: <a href="http://souptonuts.sourceforge.net/readme_mysql.htm" title="MySQL tips">MySQL Tips</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://jappler.com/blog/archive/2007/02/01/mysql-tips/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>so long, farewell ben!</title>
		<link>http://jappler.com/blog/archive/2006/11/20/so-long-farewell-ben</link>
		<comments>http://jappler.com/blog/archive/2006/11/20/so-long-farewell-ben#comments</comments>
		<pubDate>Tue, 21 Nov 2006 04:02:36 +0000</pubDate>
		<dc:creator>Jen</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[People]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Ben]]></category>
		<category><![CDATA[Camageddon-2]]></category>
		<category><![CDATA[Diablo]]></category>
		<category><![CDATA[Diablo-II]]></category>
		<category><![CDATA[Mac OS X Server]]></category>
		<category><![CDATA[Mac-OS-X]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Quake-3-Arena]]></category>
		<category><![CDATA[WebObjects]]></category>

		<guid isPermaLink="false">http://www.jappler.com/blog/archive/2006/11/20/so-long-farewell-ben.php</guid>
		<description><![CDATA[After working with Ben for almost eight years he had decided to move on. I wanted to wish Ben all the luck in the world. We had a great time working together for many years&#8230;as he put up with my on again off again relationship with Mac OS X Server and I put up with [...]]]></description>
			<content:encoded><![CDATA[<p>After working with <a href="http://cyberdog.wordpress.com/">Ben</a> for almost eight years he had decided to move on.  I wanted to wish Ben all the luck in the world.  We had a great time working together for many years&#8230;as he put up with my on again off again relationship with Mac OS X Server and I put up with his &#8220;not as funny as he thought&#8221; videos and comics <img src='http://jappler.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />   We also had a good time playing <a href="http://en.wikipedia.org/wiki/Carmageddon_2">Carmageddon 2</a>, <a href="http://en.wikipedia.org/wiki/Diablo_%28computer_game%29">Diablo</a>, <a href="http://en.wikipedia.org/wiki/Diablo_II">Diablo II</a> and <a href="http://en.wikipedia.org/wiki/Quake_3_Arena">Quake 3 Arena</a>.  We did do some great work in between all the games and great music (I got him out of the &#8220;ambient&#8221; music mode and opened the door to electronica, DJs, etc).  We did do a kick ass job of putting together a really sweet Mac OS X/Mac OS X Server server set up using Apache, MySQL, PHP, WebObjects complete with failover.  Best of luck and thanks for the good times.</p>
]]></content:encoded>
			<wfw:commentRss>http://jappler.com/blog/archive/2006/11/20/so-long-farewell-ben/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>my first wordpress plugin: WP-rssStats.</title>
		<link>http://jappler.com/blog/archive/2006/06/20/my-first-wordpress-plugin-wp-rssstats</link>
		<comments>http://jappler.com/blog/archive/2006/06/20/my-first-wordpress-plugin-wp-rssstats#comments</comments>
		<pubDate>Wed, 21 Jun 2006 01:44:12 +0000</pubDate>
		<dc:creator>Jen</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[rssStats]]></category>

		<guid isPermaLink="false">http://www.jappler.com/blog/archive/2006/06/20/my-first-wordpress-plugin-wp-rssstats.php</guid>
		<description><![CDATA[After talking to Scott I finally have a plugin which I am excited to develop and excited to share with the WordPress community&#8230;a plugin that will allow WordPress admins to see exactly how many people are subscribing to your WordPress RSS feed and who these people are. Why would I do this when Feedburner is [...]]]></description>
			<content:encoded><![CDATA[<p>After talking to <a href="http://www.fuzzyblog.com">Scott</a> I finally have a plugin which I am excited to develop and excited to share with the WordPress community&#8230;a plugin that will allow WordPress admins to see exactly how many people are subscribing to your WordPress RSS feed and who these people are.  Why would I do this when <a href="http://www.feedburner.com">Feedburner</a> is out there (and I used it currently)?  I like Feedburner but I do not like redirecting my RSS feed to a non jappler.com URL because I want to be in control of my own stats.<br />
<br />
Why start with this?  Scott had mentioned this to me and it sounded very interesting.  With this project, I will be able to learn quite a bit about PHP, the WordPress API, MySQL, as well as RSS.  This past weekend, between meetings, I read the documentation I blogged about yesterday and I started reading <a href="http://www.jappler.com/go.php?http://www.amazon.com/gp/product/0672326728/sr=8-2/qid=1150183749/ref=sr_1_2/104-5087013-6245558?%5Fencoding=UTF8">PHP and MySQL Web Development</a>, which Scott recommended.  I hope others will find this useful!  I plan to really dig into this in the next few days.  I am going to set up my test WordPress setup tomorrow so I can begin messing around with project.<br />
<br />
For more information on this, check out <a href="http://fuzzyblog.com/podcasts/f-65-gc-how-to-learn-php.mp3">Scott&#8217;s podcast on learning PHP and this project</a>.</p>
<p>[tags]WordPress, rssStats, PHP, MySQL, RSS[/tags]</p>
]]></content:encoded>
			<wfw:commentRss>http://jappler.com/blog/archive/2006/06/20/my-first-wordpress-plugin-wp-rssstats/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>learning php.</title>
		<link>http://jappler.com/blog/archive/2006/06/13/learning-php</link>
		<comments>http://jappler.com/blog/archive/2006/06/13/learning-php#comments</comments>
		<pubDate>Wed, 14 Jun 2006 01:05:42 +0000</pubDate>
		<dc:creator>Jen</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.jappler.com/blog/archive/2006/06/13/learning-php.php</guid>
		<description><![CDATA[A big thanks to Scott for pointing me in the right direction. I just got back from the store with the huge book he recommended &#8211; PHP and MySQL Web Development. I plan to start work on my first &#8220;from scratch&#8221; WordPress plugin in the next few days. [tags]PHP, MySQL, WordPress[/tags]]]></description>
			<content:encoded><![CDATA[<p>A big thanks to <a href="http://www.fuzzyblog.com">Scott</a> for pointing me in the right direction.  I just got back from the store with the huge book he recommended &#8211; <a href="http://www.amazon.com/gp/product/0672326728/sr=8-2/qid=1150183749/ref=sr_1_2/104-5087013-6245558?%5Fencoding=UTF8">PHP and MySQL Web Development</a>.  I plan to start work on my first &#8220;from scratch&#8221; <a href="http://www.wordpress.org">WordPress</a> plugin in the next few days.<br />
[tags]PHP, MySQL, WordPress[/tags]</p>
]]></content:encoded>
			<wfw:commentRss>http://jappler.com/blog/archive/2006/06/13/learning-php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mysql database corruption.</title>
		<link>http://jappler.com/blog/archive/2006/02/06/mysql-database-corruption</link>
		<comments>http://jappler.com/blog/archive/2006/02/06/mysql-database-corruption#comments</comments>
		<pubDate>Tue, 07 Feb 2006 02:25:47 +0000</pubDate>
		<dc:creator>Jen</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Hosting]]></category>
		<category><![CDATA[jappler.com]]></category>
		<category><![CDATA[CPanel]]></category>
		<category><![CDATA[database-corruption]]></category>
		<category><![CDATA[MyISAM]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.jappler.com/archive/2006/02/06/mysql-database-corruption/</guid>
		<description><![CDATA[What got me up early Saturday and then up at 1am on Sunday? Server hardware failure&#8230;which led to some database corruption. I have never had to deal with database corruption, so I did not even know my problem was database corruption until after calling the helpful tech guys at Liquid Web. (I am not one [...]]]></description>
			<content:encoded><![CDATA[<p>What got me up early Saturday and then up at 1am on Sunday?  Server hardware failure&#8230;which led to some database corruption.  I have never had to deal with database corruption, so I did not even know my problem was database corruption until after calling the helpful tech guys at <a href="http://www.liquidweb.com">Liquid Web</a>.  (I am not one to usually call tech support, but at 136am on a Sunday&#8230;I did not feel like spending time at <a href="http://www.mysql.com">mysql.com</a> or <a href="http://www.google.com">google.com</a>.)<br />
<br />
I first noticed something on Saturday morning, but after restoring a database table from a backup, everything was golden.  I told myself&#8230;it had to have been from some user error.  Monday morning, after my <a href="http://www.nagios.org">Nagios</a> server paged me, I noticed that <a href="http://www.jappler.com">jappler.com</a> had several mysql <code>fetch_row () </code> errors after the server came back up. I decided that this problem was not user error and something else was going on.  As soon as I told the tech guy the error that I was seeing on<a href="http://www.jappler.com">jappler.com</a> and other web sites I manage, he asked me if I had tried &#8220;repairing&#8221; the databases.  I had not even thought about it (especially so early in the morning).  Once he &#8220;repaired the databases&#8221;, everything was perfect.<br />
<br />
This was a stressful lesson to learn, but I am always happy to learn new things.  The lesson I learned was about database corruption. (All my tables are MyISAM)</p>
<ul>
<li>What is database corruption? Database corruption is damage to a database that then affects the integrity of the database structure and/or data.</li>
<li><a href="http://dev.mysql.com/doc/refman/5.0/en/corrupted-myisam-tables.html">How/when is database corruption likely to occur?</a></li>
<li><a href="http://dev.mysql.com/doc/refman/5.0/en/repair.html">How do you repair your MySQL databases via the command line?</a></li>
<li><a href="http://www.cpanel.net/docs/whm/Repair_a_Database.htm">How do you repair via CPANEL?</a></li>
</ul>
<p>[tags]MySQL, database corruption, CPANEL, MyISAM[/tags]</p>
]]></content:encoded>
			<wfw:commentRss>http://jappler.com/blog/archive/2006/02/06/mysql-database-corruption/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>apache 2.20, php 5, and mysql 5 on mac os x.</title>
		<link>http://jappler.com/blog/archive/2006/01/24/apache-220php-5-and-mysql-5-on-mac-os-x</link>
		<comments>http://jappler.com/blog/archive/2006/01/24/apache-220php-5-and-mysql-5-on-mac-os-x#comments</comments>
		<pubDate>Tue, 24 Jan 2006 22:35:24 +0000</pubDate>
		<dc:creator>Jen</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[subversion]]></category>

		<guid isPermaLink="false">http://www.jappler.com/archive/2006/01/24/apache-220php-5-and-mysql-5-on-mac-os-x/</guid>
		<description><![CDATA[After finally getting some to to set up my development environment, I began thinking&#8230;why am I not using Apache 2.2 and PHP 5.1.2? What made me think about this? &#8220;Legacy Release&#8221; The phrase &#8220;legacy release&#8221; is what httpd.apache.org described Apache 1.3.x as in their news section. I have been using Apache 1.x for several years [...]]]></description>
			<content:encoded><![CDATA[<p>After finally getting some to to set up my development environment, I began thinking&#8230;why am I not using Apache 2.2 and PHP 5.1.2? What made me think about this?  &#8220;Legacy Release&#8221;  The phrase &#8220;legacy release&#8221; is what <a href="http://httpd.apache.org/">httpd.apache.org</a> described Apache 1.3.x as in their news section.  I have been using Apache 1.x for several years now, only ever really thinking about migrating to 2.0 because of the need to run a <a href="http://subversion.tigris.org/">subversion</a> server.  I have a solid web server solution in place that has made me very happy for the last few years using Apache 1.3.x, but it is finally time to check out something in the 2.x family, and I am going to make that 2.2.  I am going to spend some time tomorrow reading about any known issues (especially with PHP, as I remember that being a show stopper for my interest in 2.0 before) and then install/configure it. Stay tuned for some tutorials on what I did to get everything up and running!<br />
[tags]apache, php, mysql, subversion[/tags]</p>
]]></content:encoded>
			<wfw:commentRss>http://jappler.com/blog/archive/2006/01/24/apache-220php-5-and-mysql-5-on-mac-os-x/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced)
Database Caching 2/50 queries in 0.108 seconds using disk
Object Caching 779/880 objects using disk

Served from: jappler.com @ 2010-09-08 00:51:06 -->