<?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>Shell Tips ! &#187; Benchmarks</title>
	<atom:link href="http://www.shell-tips.com/category/benchmarks/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.shell-tips.com</link>
	<description>Some useful tips about CLI tools, Shell scripts and batch files... GNU Bash, Windows XP, SQL, Help Sheets / Cheat Sheets, etc.</description>
	<lastBuildDate>Mon, 14 Jun 2010 08:56:44 +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>MySQL &#8211; Impact of multiple column indexes misuse</title>
		<link>http://www.shell-tips.com/2008/02/13/mysql-impact-of-multiple-column-indexes-misuse/</link>
		<comments>http://www.shell-tips.com/2008/02/13/mysql-impact-of-multiple-column-indexes-misuse/#comments</comments>
		<pubDate>Wed, 13 Feb 2008 11:27:44 +0000</pubDate>
		<dc:creator>Nicolas Brousse</dc:creator>
				<category><![CDATA[Benchmarks]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[benchmark]]></category>
		<category><![CDATA[full-text search]]></category>
		<category><![CDATA[index]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://www.shell-tips.com/2008/02/13/mysql-impact-of-multiple-column-indexes-misuse/</guid>
		<description><![CDATA[Here is a quick picture about the impact of MySQL indexes misuse. At work, our developers made a new release of their search engine using MySQL fulltext indexes, unfortunately they didn&#8217;t implement it correctly. The impact was a huge load on all our database servers. To find the trouble, I had to redirect the SQL [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a quick picture about the impact of MySQL indexes misuse. At work, our developers made a new release of their search engine using <a title="MySQL Fulltext Search" href="http://dev.mysql.com/doc/refman/5.0/en/fulltext-search.html">MySQL fulltext indexes</a>, unfortunately they didn&#8217;t implement it correctly. The impact was a huge load on all our database servers. To find the trouble, I had to redirect the SQL search flow to a specific server and check for the slow queries then reproduce it with <a title="MySQL - Optimize query with EXPLAIN" href="http://dev.mysql.com/doc/refman/5.0/en/explain.html">EXPLAIN</a>. Don&#8217;t need a long time to find that the search query did an invalid usage of the fulltext index and the &#8220;Match / Against&#8221; syntax. In fact, the fulltext index was a multiple column fulltext index, in such case you have to specify <strong>ALL</strong> the column present in your index, else the index won&#8217;t be used by MySQL&#8230;</p>
<p align="center"><img title="MySQL - Fulltext Indexes (MATH / AGAINST)" src="/dl/match_against.png" border="0" alt="MySQL - Fulltext Indexes (MATH / AGAINST)" width="738" height="370" /></p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fwww.shell-tips.com%2F2008%2F02%2F13%2Fmysql-impact-of-multiple-column-indexes-misuse%2F&amp;title=MySQL+-+Impact+of+multiple+column+indexes+misuse" ><img class="lightsocial_img" src="http://www.shell-tips.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.shell-tips.com%2F2008%2F02%2F13%2Fmysql-impact-of-multiple-column-indexes-misuse%2F&amp;title=MySQL+-+Impact+of+multiple+column+indexes+misuse" ><img class="lightsocial_img" src="http://www.shell-tips.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.shell-tips.com%2F2008%2F02%2F13%2Fmysql-impact-of-multiple-column-indexes-misuse%2F&amp;title=MySQL+-+Impact+of+multiple+column+indexes+misuse" ><img class="lightsocial_img" src="http://www.shell-tips.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwww.shell-tips.com%2F2008%2F02%2F13%2Fmysql-impact-of-multiple-column-indexes-misuse%2F&amp;headline=MySQL+-+Impact+of+multiple+column+indexes+misuse" ><img class="lightsocial_img" src="http://www.shell-tips.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=MySQL+-+Impact+of+multiple+column+indexes+misuse&amp;url=http%3A%2F%2Fwww.shell-tips.com%2F2008%2F02%2F13%2Fmysql-impact-of-multiple-column-indexes-misuse%2F" ><img class="lightsocial_img" src="http://www.shell-tips.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=MySQL+-+Impact+of+multiple+column+indexes+misuse&amp;u=http%3A%2F%2Fwww.shell-tips.com%2F2008%2F02%2F13%2Fmysql-impact-of-multiple-column-indexes-misuse%2F" ><img class="lightsocial_img" src="http://www.shell-tips.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=MySQL+-+Impact+of+multiple+column+indexes+misuse&amp;url=http%3A%2F%2Fwww.shell-tips.com%2F2008%2F02%2F13%2Fmysql-impact-of-multiple-column-indexes-misuse%2F" ><img class="lightsocial_img" src="http://www.shell-tips.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=MySQL+-+Impact+of+multiple+column+indexes+misuse&amp;url=http%3A%2F%2Fwww.shell-tips.com%2F2008%2F02%2F13%2Fmysql-impact-of-multiple-column-indexes-misuse%2F" ><img class="lightsocial_img" src="http://www.shell-tips.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=MySQL+-+Impact+of+multiple+column+indexes+misuse&amp;url=http%3A%2F%2Fwww.shell-tips.com%2F2008%2F02%2F13%2Fmysql-impact-of-multiple-column-indexes-misuse%2F" ><img class="lightsocial_img" src="http://www.shell-tips.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.shell-tips.com%2F2008%2F02%2F13%2Fmysql-impact-of-multiple-column-indexes-misuse%2F&amp;title=MySQL+-+Impact+of+multiple+column+indexes+misuse&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://www.shell-tips.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.shell-tips.com%2F2008%2F02%2F13%2Fmysql-impact-of-multiple-column-indexes-misuse%2F" ><img class="lightsocial_img" src="http://www.shell-tips.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fwww.shell-tips.com%2F2008%2F02%2F13%2Fmysql-impact-of-multiple-column-indexes-misuse%2F" ><img class="lightsocial_img" src="http://www.shell-tips.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fwww.shell-tips.com%2F2008%2F02%2F13%2Fmysql-impact-of-multiple-column-indexes-misuse%2F" ><img class="lightsocial_img" src="http://www.shell-tips.com/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://www.shell-tips.com/2008/02/13/mysql-impact-of-multiple-column-indexes-misuse/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>[PHP] Zend Platform &#8211; Performance results</title>
		<link>http://www.shell-tips.com/2007/11/12/php-zend-platform-performance-results/</link>
		<comments>http://www.shell-tips.com/2007/11/12/php-zend-platform-performance-results/#comments</comments>
		<pubDate>Mon, 12 Nov 2007 16:57:14 +0000</pubDate>
		<dc:creator>Nicolas Brousse</dc:creator>
				<category><![CDATA[Benchmarks]]></category>
		<category><![CDATA[Case Study]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[benchmark]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php5]]></category>
		<category><![CDATA[zend]]></category>
		<category><![CDATA[zend platform]]></category>

		<guid isPermaLink="false">http://www.shell-tips.com/2007/11/12/php-zend-platform-performance-results/</guid>
		<description><![CDATA[If you are a PHP developer or a LAMP server admin you probably have already heard about the Zend Platform. After some test and configure/tunning step, we deployed this solution on a heavy loaded production server running with Apache 2.x, PHP 4.4.x, MySQL Client 5.x. The server used for deploy and test the Zend Platform [...]]]></description>
			<content:encoded><![CDATA[<p>If you are a PHP developer or a LAMP server admin you probably have already heard about the <a title="Zend Platform" href="http://www.zend.com/fr/products/zend_platform">Zend Platform</a>. After some test and configure/tunning step, we deployed this solution on a heavy loaded production server running with <a title="Apache - HTTPD Server" href="http://httpd.apache.org">Apache 2.x</a>, <a title="PHP" href="http://www.php.net">PHP 4.4.x</a>, <a title="MySQL" href="http://www.mysql.org">MySQL Client 5.x</a>.</p>
<p><span id="more-37"></span></p>
<p>The server used for deploy and test the Zend Platform in real production condition is a Bi-Xeon 1,4Ghz with 2Go RAM and 2&#215;36 Go SCSI. This server is part of a cluster made of 10 servers which deliver PHP scripts only. All statics media (gif, css, js, swf, etc.) are delivered thru other dedicated servers.</p>
<p><strong>Statistics Without  Zend Platform</strong></p>
<blockquote>
<ul>
<li>More than 3.000.000 Hits/Day</li>
<li>30 Hits/sec</li>
<li>60% Average CPU Load</li>
</ul>
</blockquote>
<p><strong>Statistics With  Zend Platform</strong></p>
<blockquote>
<ul>
<li> More than 10.000.000 Hits/Day</li>
<li>100 Hits/sec</li>
<li>20% Average CPU Load</li>
</ul>
</blockquote>
<p><img title="Zend Platform Results" src="/dl/tn_zp_results.png" border="0" alt="Zend Platform Results" width="150" height="194" align="left" /></p>
<p><a title="Zend Platform - Performance result (PDF)" href="/dl/zp_results.pdf">Download the PDF Version</a></p>
<p><a title="Zend Platform - Performance result (PNG)" href="/dl/zp_results.png">Download the PNG Version</a></p>
<p><strong>To sum up<br />
</strong></p>
<blockquote>
<ul>
<li> Manage 3.5 times more traffic</li>
<li> Having 3 times less load</li>
<li> Use same quantity of process</li>
<li> All the advanced futures for debug, profile, analyze your code</li>
<li>Centralize error message easily from multiple front (With stats, alerts, vhost, etc.)</li>
<li>HTML Caching solution</li>
</ul>
</blockquote>
<p>Of course, all this stuff could be done with <a title="xDebug" href="http://www.xdebug.org">xDebug</a>, <a title="xCache" href="http://xcache.lighttpd.net">xCache</a> and many other Open Source solution, this will depend of your free time for deploying it. The Zend Platform is an &#8220;All in One&#8221; package with some advanced features and a good interaction between the Platform and your IDE (<a title="Zend Studio - Zend Neon" href="http://www.zend.com/products/zend_studio">Zend Studio/Neon</a>).</p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fwww.shell-tips.com%2F2007%2F11%2F12%2Fphp-zend-platform-performance-results%2F&amp;title=%5BPHP%5D+Zend+Platform+-+Performance+results" ><img class="lightsocial_img" src="http://www.shell-tips.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.shell-tips.com%2F2007%2F11%2F12%2Fphp-zend-platform-performance-results%2F&amp;title=%5BPHP%5D+Zend+Platform+-+Performance+results" ><img class="lightsocial_img" src="http://www.shell-tips.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.shell-tips.com%2F2007%2F11%2F12%2Fphp-zend-platform-performance-results%2F&amp;title=%5BPHP%5D+Zend+Platform+-+Performance+results" ><img class="lightsocial_img" src="http://www.shell-tips.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwww.shell-tips.com%2F2007%2F11%2F12%2Fphp-zend-platform-performance-results%2F&amp;headline=%5BPHP%5D+Zend+Platform+-+Performance+results" ><img class="lightsocial_img" src="http://www.shell-tips.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=%5BPHP%5D+Zend+Platform+-+Performance+results&amp;url=http%3A%2F%2Fwww.shell-tips.com%2F2007%2F11%2F12%2Fphp-zend-platform-performance-results%2F" ><img class="lightsocial_img" src="http://www.shell-tips.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=%5BPHP%5D+Zend+Platform+-+Performance+results&amp;u=http%3A%2F%2Fwww.shell-tips.com%2F2007%2F11%2F12%2Fphp-zend-platform-performance-results%2F" ><img class="lightsocial_img" src="http://www.shell-tips.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=%5BPHP%5D+Zend+Platform+-+Performance+results&amp;url=http%3A%2F%2Fwww.shell-tips.com%2F2007%2F11%2F12%2Fphp-zend-platform-performance-results%2F" ><img class="lightsocial_img" src="http://www.shell-tips.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=%5BPHP%5D+Zend+Platform+-+Performance+results&amp;url=http%3A%2F%2Fwww.shell-tips.com%2F2007%2F11%2F12%2Fphp-zend-platform-performance-results%2F" ><img class="lightsocial_img" src="http://www.shell-tips.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=%5BPHP%5D+Zend+Platform+-+Performance+results&amp;url=http%3A%2F%2Fwww.shell-tips.com%2F2007%2F11%2F12%2Fphp-zend-platform-performance-results%2F" ><img class="lightsocial_img" src="http://www.shell-tips.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.shell-tips.com%2F2007%2F11%2F12%2Fphp-zend-platform-performance-results%2F&amp;title=%5BPHP%5D+Zend+Platform+-+Performance+results&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://www.shell-tips.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.shell-tips.com%2F2007%2F11%2F12%2Fphp-zend-platform-performance-results%2F" ><img class="lightsocial_img" src="http://www.shell-tips.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fwww.shell-tips.com%2F2007%2F11%2F12%2Fphp-zend-platform-performance-results%2F" ><img class="lightsocial_img" src="http://www.shell-tips.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fwww.shell-tips.com%2F2007%2F11%2F12%2Fphp-zend-platform-performance-results%2F" ><img class="lightsocial_img" src="http://www.shell-tips.com/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://www.shell-tips.com/2007/11/12/php-zend-platform-performance-results/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Choosing a filesystem for your Linux/Unix server</title>
		<link>http://www.shell-tips.com/2007/08/27/choosing-a-filesystem-for-your-linuxunix-server/</link>
		<comments>http://www.shell-tips.com/2007/08/27/choosing-a-filesystem-for-your-linuxunix-server/#comments</comments>
		<pubDate>Mon, 27 Aug 2007 18:31:31 +0000</pubDate>
		<dc:creator>Nicolas Brousse</dc:creator>
				<category><![CDATA[Benchmarks]]></category>
		<category><![CDATA[dd]]></category>
		<category><![CDATA[ext3]]></category>
		<category><![CDATA[filesystem]]></category>
		<category><![CDATA[fs]]></category>
		<category><![CDATA[iostat]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[reiserfs]]></category>
		<category><![CDATA[xfz]]></category>
		<category><![CDATA[zfs]]></category>

		<guid isPermaLink="false">http://www.shell-tips.com/2007/08/27/choosing-a-filesystem-for-your-linuxunix-server/</guid>
		<description><![CDATA[You probably already ask you : &#8220;which filesystem can I use on my web servers or database server ?&#8221; Usually you will use the well know Ext3-fs but what about the others ? I will just try to give you some clue about some other common filesystems. The filesystem aspect of your server is really [...]]]></description>
			<content:encoded><![CDATA[<p>You probably already ask you : &#8220;<em>which filesystem can I use on my web servers or database server ?</em>&#8221; Usually you will use the well know Ext3-fs but what about the others ?</p>
<p>I will just try to give you some clue about some other common filesystems. The filesystem aspect of your server is really important and your choice will vary with your running application.  As exemple, a mail server will have more performances with a Reiserfs filesystem than with Ext3-fs.</p>
<p><span id="more-35"></span></p>
<p>You can have a large list of existing filesystems on wikipedia: <a title="Comparison of file systems" href="http://en.wikipedia.org/wiki/Comparison_of_file_systems">http://en.wikipedia.org/wiki/Comparison_of_file_systems</a></p>
<p>An interesting banchmark about Reiser4 : <a title="Namesys Benchmarks - Reiser4" href="http://www.namesys.com/benchmarks.html">http://www.namesys.com/benchmarks.html</a></p>
<p>In the case of a MySQL Server you can try to benchmark your own server with the excellent tool <a title="SysBench" href="http://sourceforge.net/projects/sysbench">SysBench</a> and read this good article on MySQL Website: <a title="High Performance MySQL Chapter 6: Server Performance Tuning" href="http://dev.mysql.com/books/hpmysql-excerpts/ch06.html">http://dev.mysql.com/books/hpmysql-excerpts/ch06.html</a></p>
<p>Here is a complete benchmark done with SysBench with a MySQL Server 4.1 on various filesystems where we can see the High Performance of <strong>XFS</strong> in a MySQL Environment: <a title="MySQL FileSystems Benchmarks" href="http://howto.x-tend.be/MySQL-FileSystems-Benchmark/x45.html">http://howto.x-tend.be/MySQL-FileSystems-Benchmark/x45.html</a></p>
<p>To conclude about filesystems, there is not a &#8220;best filesystem&#8221;, as any tuning performance aspect on a Linux/Unix box your choice will depend on your workload, your data integrity needing, the requested size, the disk characteristics, journaling needs, etc. Important things is to well understand your server bottleneck (you can use <strong>iostat</strong> and <strong>dd</strong>) then you could define your needs and choose your filesystem.</p>
<p>Personnaly, my databases are now running with XFS, my mailservers with ReiserFS and my  web servers in Ext3-fs.</p>
<p>NB : Another important point will be to choose the  correct schedule, but nowadays the default one is generally the good one (cfq : Completely Fair Queueing. Here is a good (old) post on RedHat web site : <a title="RedHat - Linux Scheduler" href="http://www.redhat.com/magazine/008jun05/features/schedulers/">http://www.redhat.com/magazine/008jun05/features/schedulers/</a></p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fwww.shell-tips.com%2F2007%2F08%2F27%2Fchoosing-a-filesystem-for-your-linuxunix-server%2F&amp;title=Choosing+a+filesystem+for+your+Linux%2FUnix+server" ><img class="lightsocial_img" src="http://www.shell-tips.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.shell-tips.com%2F2007%2F08%2F27%2Fchoosing-a-filesystem-for-your-linuxunix-server%2F&amp;title=Choosing+a+filesystem+for+your+Linux%2FUnix+server" ><img class="lightsocial_img" src="http://www.shell-tips.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.shell-tips.com%2F2007%2F08%2F27%2Fchoosing-a-filesystem-for-your-linuxunix-server%2F&amp;title=Choosing+a+filesystem+for+your+Linux%2FUnix+server" ><img class="lightsocial_img" src="http://www.shell-tips.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwww.shell-tips.com%2F2007%2F08%2F27%2Fchoosing-a-filesystem-for-your-linuxunix-server%2F&amp;headline=Choosing+a+filesystem+for+your+Linux%2FUnix+server" ><img class="lightsocial_img" src="http://www.shell-tips.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Choosing+a+filesystem+for+your+Linux%2FUnix+server&amp;url=http%3A%2F%2Fwww.shell-tips.com%2F2007%2F08%2F27%2Fchoosing-a-filesystem-for-your-linuxunix-server%2F" ><img class="lightsocial_img" src="http://www.shell-tips.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Choosing+a+filesystem+for+your+Linux%2FUnix+server&amp;u=http%3A%2F%2Fwww.shell-tips.com%2F2007%2F08%2F27%2Fchoosing-a-filesystem-for-your-linuxunix-server%2F" ><img class="lightsocial_img" src="http://www.shell-tips.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Choosing+a+filesystem+for+your+Linux%2FUnix+server&amp;url=http%3A%2F%2Fwww.shell-tips.com%2F2007%2F08%2F27%2Fchoosing-a-filesystem-for-your-linuxunix-server%2F" ><img class="lightsocial_img" src="http://www.shell-tips.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Choosing+a+filesystem+for+your+Linux%2FUnix+server&amp;url=http%3A%2F%2Fwww.shell-tips.com%2F2007%2F08%2F27%2Fchoosing-a-filesystem-for-your-linuxunix-server%2F" ><img class="lightsocial_img" src="http://www.shell-tips.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Choosing+a+filesystem+for+your+Linux%2FUnix+server&amp;url=http%3A%2F%2Fwww.shell-tips.com%2F2007%2F08%2F27%2Fchoosing-a-filesystem-for-your-linuxunix-server%2F" ><img class="lightsocial_img" src="http://www.shell-tips.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.shell-tips.com%2F2007%2F08%2F27%2Fchoosing-a-filesystem-for-your-linuxunix-server%2F&amp;title=Choosing+a+filesystem+for+your+Linux%2FUnix+server&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://www.shell-tips.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.shell-tips.com%2F2007%2F08%2F27%2Fchoosing-a-filesystem-for-your-linuxunix-server%2F" ><img class="lightsocial_img" src="http://www.shell-tips.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fwww.shell-tips.com%2F2007%2F08%2F27%2Fchoosing-a-filesystem-for-your-linuxunix-server%2F" ><img class="lightsocial_img" src="http://www.shell-tips.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fwww.shell-tips.com%2F2007%2F08%2F27%2Fchoosing-a-filesystem-for-your-linuxunix-server%2F" ><img class="lightsocial_img" src="http://www.shell-tips.com/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://www.shell-tips.com/2007/08/27/choosing-a-filesystem-for-your-linuxunix-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
