<?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>The Troll&#039;s factory &#187; benchmark</title>
	<atom:link href="http://trollfactory.fr/tag/benchmark/feed" rel="self" type="application/rss+xml" />
	<link>http://trollfactory.fr</link>
	<description>Geekeries &#38; pensées</description>
	<lastBuildDate>Mon, 09 Jun 2014 19:43:25 +0000</lastBuildDate>
	<language>fr-FR</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.1.41</generator>
	<item>
		<title>PHP: USE concatenation NOT multiple echo / parameters</title>
		<link>http://trollfactory.fr/php-use-concatenation-not-multiple-echo-parameters-586</link>
		<comments>http://trollfactory.fr/php-use-concatenation-not-multiple-echo-parameters-586#comments</comments>
		<pubDate>Sun, 12 Aug 2012 22:21:54 +0000</pubDate>
		<dc:creator><![CDATA[Troll]]></dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Scripts, astuces, dév. web]]></category>
		<category><![CDATA[benchmark]]></category>
		<category><![CDATA[echo]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[print]]></category>

		<guid isPermaLink="false">http://trollfactory.fr/?p=586</guid>
		<description><![CDATA[Print vs. Echo I just went accross an interesting article about which of &#171;&#160;print&#160;&#187; or &#171;&#160;echo&#160;&#187; we should use in PHP. The author has benchmarked the two solutions (though the data are certainly a bit old) shows that, although there is not much difference between the two, echo seems to be more efficient. Great, I [...]]]></description>
				<content:encoded><![CDATA[<h2>Print vs. Echo</h2>
<p>I just went accross an interesting article about which of &laquo;&nbsp;print&nbsp;&raquo; or &laquo;&nbsp;echo&nbsp;&raquo; we should use in PHP.</p>
<p>The author has benchmarked the two solutions (though the data are certainly a bit old) shows that, although there is not much difference between the two, echo seems to be more efficient.</p>
<p>Great, I believe you.</p>
<h2>Echo multiple statements / arguments vs. Concatenation</h2>
<p>But at the end of the article, the author also suggest to use <strong>multiple parameters</strong> given to one echo statement <strong>instead of concatenation because concatenation is slow&#8230;</strong> bla bla&#8230;</p>
<p>As I have always been using concatenation (did not even know echo could take multiple arguments) and I never had any performance issue, I decided to check that and make a benchmark: echo 100,000 times two concatenated strings and do the same thing with two parameters and two echos statements&#8230;</p>
<p><strong>The benchmark was clear: concatenation IS FASTER</strong> than the two other solutions.</p>
<h2>String caching? Making a more relevant benchmark</h2>
<p>As it appeared a bit weird to me, having been doing Java / C# mostly recently (with their slow concatenation that recreated a new object blabla), I thought &laquo;&nbsp;maybe the PHP VM is <strong>caching</strong> the result of the concatenated string, thus the benchmark is not relevant&nbsp;&raquo;.</p>
<p>OK, let&rsquo;s check with a counter-possible-caching benchmark then:</p>
<pre>

$t0 = microtime(true);

define("MAX", 2000000);
File_put_ConTents("echobench._log", "");
function _log($str)
{
	File_put_ConTents("echobench._log", file_get_contents("echobench._log") . $str);
}

// Generating a bunch of string to concatenate to avoid PHP VM-caching
$strs = array();
for ($i=0; $i < MAX+1; $i++) { 
	$m = mt_rand(0, 200);
	$strs[$i] = '';
	for ($j=0; $j < $m; $j++) { 
		$strs[$i] .= chr(mt_rand(0, 255));
	}
}

// Loop where string concatenation caching is possible :
$t1 = microtime(true);
for ($i=0; $i < MAX; $i++) { 
	echo "Hello" . "World! <br />";
}
$t2 = microtime(true);
_log("Concatenation, cached: " . ($t2-$t1) . "s\n");

// Loop where is is not :
$t1 = microtime(true);
for ($i=0; $i < MAX; $i++) { 
	echo $strs[$i] . $strs[$i + 1];
}
$t2 = microtime(true);
_log("Concatenation, not cached: " . ($t2-$t1) . "s\n");

// Other ways to display stuff, with and without caching possible each time:
$t1 = microtime(true);
for ($i=0; $i < MAX; $i++) { 
	echo $strs[$i];
	echo $strs[$i + 1];
}
$t2 = microtime(true);
_log("Two echos, not cached: " . ($t2-$t1) . "s\n");

$t1 = microtime(true);
for ($i=0; $i < MAX; $i++) { 
	echo "Hello" , "<br />";
	echo "World" , "<br />";
}
$t2 = microtime(true);
_log("Two echos, cached: " . ($t2-$t1) . "s\n");

$t1 = microtime(true);
for ($i=0; $i < MAX; $i++) { 
	echo $strs[$i], $strs[$i + 1];;
}
$t2 = microtime(true);
_log("Two parameters, not cached: " . ($t2-$t1) . "s\n");

$t1 = microtime(true);
for ($i=0; $i < MAX; $i++) { 
	echo "Hello" , "World!" , "<br />";
}
$t2 = microtime(true);
_log("Two parameters, cached: " . ($t2-$t1) . "s\n");

$t3 = microtime(true);

_log("Total benchmark time: " . ($t3-$t0)."\n");

</pre>
<p>I generated <strong>random strings</strong> at the beginning of the script. And I concatenate them after, in the loop. Thus, there is not even once the same concatenation happening, thus, no possible caching or whatever.</p>
<p>The benchmarked has been run on a 1.6GHz Atom processor, with the following command: </p>
<pre>sudo nice -n -19 php -q echobanchmark.php > /dev/null</pre>
<p>So the process was the most prioritized one on the OS and then there is no reason for any interference between the loops (moreover, the system was idle during the test (and there are 3 other virtual processors for doing whatever work the OS would need to do).</p>
<h3>And do you know the result?</h3>
<p>Here it goes: </p>
<p>Concatenation, cached: <strong>7.4381861686707s</strong><br />
Concatenation, not cached: <strong>9.9010219573975s</strong><br />
Two echos, not cached: <strong>10.4353120327s</strong><br />
Two echos, cached: <strong>14.883654117584s</strong><br />
Two parameters, not cached: <strong>10.179102897644s</strong><br />
Two parameters, cached: <strong>11.904446840286s</strong><br />
Total benchmark time: 928.97792601585</p>
<p><strong>Conclusion: Concatenation is fast, very fast.</strong> It is rougly <strong>30% faster</strong> than using the two parameters for echo (26.9268987% exactly) and roughly <strong>30% faster</strong> than two echo statements as well (28.720999% exactly) and <strong></p>
<p>The other conclusion here is that <srtong>PHP does not seem to be caching strings very well</strong>. Both the two-parameters and two-statements echo loops are <strong>much slower when using a fresh new string and much faster when using something from the previously generated array</strong>. The difference between cached / non-cached loop for the concatenation loop is also not that impressive if we observe that my &laquo;&nbsp;not cached&nbsp;&raquo; loop is using strings of random length that can go until 200 chars whereas the &laquo;&nbsp;cached&nbsp;&raquo; one is a very short string (so the difference of 2 seconds is certainly also due to the difference in length of the strings).</p>
<p>If you have any suggestion to improve the benchmark, feel free to post a comment.</p>
Share and Enjoy:<a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fphp-use-concatenation-not-multiple-echo-parameters-586" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fphp-use-concatenation-not-multiple-echo-parameters-586" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/pdf.png" class="sociable-img sociable-hovers" title="PDF" alt="PDF" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=PHP%3A%20USE%20concatenation%20NOT%20multiple%20echo%20%2F%20parameters%20-%20http%3A%2F%2Ftrollfactory.fr%2Fphp-use-concatenation-not-multiple-echo-parameters-586" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Ftrollfactory.fr%2Fphp-use-concatenation-not-multiple-echo-parameters-586&amp;t=PHP%3A%20USE%20concatenation%20NOT%20multiple%20echo%20%2F%20parameters" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fphp-use-concatenation-not-multiple-echo-parameters-586&amp;title=PHP%3A%20USE%20concatenation%20NOT%20multiple%20echo%20%2F%20parameters&amp;source=The+Troll%26%23039%3Bs+factory+Geekeries+%26amp%3B+pens%C3%A9es&amp;summary=Print%20vs.%20Echo%0D%0A%0D%0AI%20just%20went%20accross%20an%20interesting%20article%20about%20which%20of%20%22print%22%20or%20%22echo%22%20we%20should%20use%20in%20PHP.%0D%0A%0D%0AThe%20author%20has%20benchmarked%20the%20two%20solutions%20%28though%20the%20data%20are%20certainly%20a%20bit%20old%29%20shows%20that%2C%20although%20there%20is%20not%20much%20diffe" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://trollfactory.fr/feed" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/rss.png" class="sociable-img sociable-hovers" title="RSS" alt="RSS" /></a><a rel="nofollow" target="_blank"  href="http://www.wikio.fr/vote?url=http%3A%2F%2Ftrollfactory.fr%2Fphp-use-concatenation-not-multiple-echo-parameters-586" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/wikio.png" class="sociable-img sociable-hovers" title="Wikio FR" alt="Wikio FR" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fphp-use-concatenation-not-multiple-echo-parameters-586&amp;title=PHP%3A%20USE%20concatenation%20NOT%20multiple%20echo%20%2F%20parameters&amp;bodytext=Print%20vs.%20Echo%0D%0A%0D%0AI%20just%20went%20accross%20an%20interesting%20article%20about%20which%20of%20%22print%22%20or%20%22echo%22%20we%20should%20use%20in%20PHP.%0D%0A%0D%0AThe%20author%20has%20benchmarked%20the%20two%20solutions%20%28though%20the%20data%20are%20certainly%20a%20bit%20old%29%20shows%20that%2C%20although%20there%20is%20not%20much%20diffe" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Ftrollfactory.fr%2Fphp-use-concatenation-not-multiple-echo-parameters-586&amp;title=PHP%3A%20USE%20concatenation%20NOT%20multiple%20echo%20%2F%20parameters&amp;notes=Print%20vs.%20Echo%0D%0A%0D%0AI%20just%20went%20accross%20an%20interesting%20article%20about%20which%20of%20%22print%22%20or%20%22echo%22%20we%20should%20use%20in%20PHP.%0D%0A%0D%0AThe%20author%20has%20benchmarked%20the%20two%20solutions%20%28though%20the%20data%20are%20certainly%20a%20bit%20old%29%20shows%20that%2C%20although%20there%20is%20not%20much%20diffe" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Ftrollfactory.fr%2Fphp-use-concatenation-not-multiple-echo-parameters-586&amp;title=PHP%3A%20USE%20concatenation%20NOT%20multiple%20echo%20%2F%20parameters&amp;annotation=Print%20vs.%20Echo%0D%0A%0D%0AI%20just%20went%20accross%20an%20interesting%20article%20about%20which%20of%20%22print%22%20or%20%22echo%22%20we%20should%20use%20in%20PHP.%0D%0A%0D%0AThe%20author%20has%20benchmarked%20the%20two%20solutions%20%28though%20the%20data%20are%20certainly%20a%20bit%20old%29%20shows%20that%2C%20although%20there%20is%20not%20much%20diffe" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/googlebookmark.png" class="sociable-img sociable-hovers" title="Google Bookmarks" alt="Google Bookmarks" /></a><a rel="nofollow" target="_blank"  href="http://technorati.com/faves?add=http%3A%2F%2Ftrollfactory.fr%2Fphp-use-concatenation-not-multiple-echo-parameters-586" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/technorati.png" class="sociable-img sociable-hovers" title="Technorati" alt="Technorati" /></a><a rel="nofollow" target="_blank"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Ftrollfactory.fr%2Fphp-use-concatenation-not-multiple-echo-parameters-586" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/sphinn.png" class="sociable-img sociable-hovers" title="Sphinn" alt="Sphinn" /></a><a rel="nofollow" target="_blank"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Ftrollfactory.fr%2Fphp-use-concatenation-not-multiple-echo-parameters-586&amp;title=PHP%3A%20USE%20concatenation%20NOT%20multiple%20echo%20%2F%20parameters" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/mixx.png" class="sociable-img sociable-hovers" title="Mixx" alt="Mixx" /></a><a rel="nofollow" target="_blank" title="Add to favorites" href="#" onclick="AddToFavorites(); return false;"><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/addtofavorites.png" class="sociable-img sociable-hovers" title="Add to favorites" alt="Add to favorites" /></a><a rel="nofollow" target="_blank"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fphp-use-concatenation-not-multiple-echo-parameters-586&amp;title=PHP%3A%20USE%20concatenation%20NOT%20multiple%20echo%20%2F%20parameters" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/live.png" class="sociable-img sociable-hovers" title="Live" alt="Live" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=PHP%3A%20USE%20concatenation%20NOT%20multiple%20echo%20%2F%20parameters&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fphp-use-concatenation-not-multiple-echo-parameters-586" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.scoopeo.com/scoop/new?newurl=http%3A%2F%2Ftrollfactory.fr%2Fphp-use-concatenation-not-multiple-echo-parameters-586&amp;title=PHP%3A%20USE%20concatenation%20NOT%20multiple%20echo%20%2F%20parameters" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/scoopeo.png" class="sociable-img sociable-hovers" title="Scoopeo" alt="Scoopeo" /></a><a rel="nofollow" target="_blank"  href="http://www.viadeo.com/shareit/share/?url=http%3A%2F%2Ftrollfactory.fr%2Fphp-use-concatenation-not-multiple-echo-parameters-586&title=PHP%3A%20USE%20concatenation%20NOT%20multiple%20echo%20%2F%20parameters&urllanguage=fr" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/viadeo.png" class="sociable-img sociable-hovers" title="viadeo FR" alt="viadeo FR" /></a><a rel="nofollow" target="_blank"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Ftrollfactory.fr%2Fphp-use-concatenation-not-multiple-echo-parameters-586" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/identica.png" class="sociable-img sociable-hovers" title="Identi.ca" alt="Identi.ca" /></a><a rel="nofollow" target="_blank"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Ftrollfactory.fr%2Fphp-use-concatenation-not-multiple-echo-parameters-586&amp;t=PHP%3A%20USE%20concatenation%20NOT%20multiple%20echo%20%2F%20parameters" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/myspace.png" class="sociable-img sociable-hovers" title="MySpace" alt="MySpace" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Ftrollfactory.fr%2Fphp-use-concatenation-not-multiple-echo-parameters-586&amp;title=PHP%3A%20USE%20concatenation%20NOT%20multiple%20echo%20%2F%20parameters" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Ftrollfactory.fr%2Fphp-use-concatenation-not-multiple-echo-parameters-586&amp;submitHeadline=PHP%3A%20USE%20concatenation%20NOT%20multiple%20echo%20%2F%20parameters&amp;submitSummary=Print%20vs.%20Echo%0D%0A%0D%0AI%20just%20went%20accross%20an%20interesting%20article%20about%20which%20of%20%22print%22%20or%20%22echo%22%20we%20should%20use%20in%20PHP.%0D%0A%0D%0AThe%20author%20has%20benchmarked%20the%20two%20solutions%20%28though%20the%20data%20are%20certainly%20a%20bit%20old%29%20shows%20that%2C%20although%20there%20is%20not%20much%20diffe&amp;submitCategory=science&amp;submitAssetType=text" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://trollfactory.fr/php-use-concatenation-not-multiple-echo-parameters-586/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Benchmark Dédibox V3 chez Online.net</title>
		<link>http://trollfactory.fr/benchmark-dedibox-v3-chez-online-net-333</link>
		<comments>http://trollfactory.fr/benchmark-dedibox-v3-chez-online-net-333#comments</comments>
		<pubDate>Sun, 26 Dec 2010 19:12:47 +0000</pubDate>
		<dc:creator><![CDATA[Troll]]></dc:creator>
				<category><![CDATA[Administration serveur]]></category>
		<category><![CDATA[Geekeries]]></category>
		<category><![CDATA[benchmark]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[dédibox]]></category>
		<category><![CDATA[dédibox V3]]></category>
		<category><![CDATA[online]]></category>
		<category><![CDATA[online.net]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[serveur]]></category>
		<category><![CDATA[V3]]></category>

		<guid isPermaLink="false">http://trollfactory.fr/?p=333</guid>
		<description><![CDATA[Bon, en pleine installation serveur, je prends quand même le temps de faire quelques Benchmarks, et je me dis que ça en intéressera sûrement certains d&#8217;avoir les résultats (surtout ceux qui hésitent à choisir l&#8217;offre ). La dédibox V3 est fraichement installée, rien ne tourne dessus, aucun paquet supplémentaire si ce n&#8217;est le logiciel hardinfo [...]]]></description>
				<content:encoded><![CDATA[<p>Bon, en pleine installation serveur, je prends quand même le temps de faire quelques Benchmarks, et je me dis que ça en intéressera sûrement certains d&rsquo;avoir les résultats (surtout ceux qui hésitent à choisir l&rsquo;offre <img src="//trollfactory.fr/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> ).</p>
<p>La dédibox V3 est fraichement installée, rien ne tourne dessus, aucun paquet supplémentaire si ce n&rsquo;est le logiciel hardinfo et ses dépendances pour le benchmark.</p>
<p>Tout d&rsquo;abord, hdparm (débits disque) :</p>
<p><code>*:~# free -m<br />
             total       used       free     shared    buffers     cached<br />
Mem:          1980        228       1751          0         87         85<br />
-/+ buffers/cache:         55       1924<br />
Swap:         2047          0       2047<br />
*:~# hdparm -t /dev/sda</p>
<p>/dev/sda:<br />
 Timing buffered disk reads:  238 MB in  3.01 seconds =  79.01 MB/sec<br />
*:~# hdparm -T /dev/sda</p>
<p>/dev/sda:<br />
 Timing cached reads:   1374 MB in  2.00 seconds = 686.92 MB/sec<br />
*:~# hdparm -t /dev/sda</p>
<p>/dev/sda:<br />
 Timing buffered disk reads:  242 MB in  3.02 seconds =  80.21 MB/sec<br />
*:~# hdparm -T /dev/sda</p>
<p>/dev/sda:<br />
 Timing cached reads:   1358 MB in  2.00 seconds = 679.22 MB/sec<br />
</code></p>
<p>Espace disque et utilisation RAM à vide :</p>
<p>(j&rsquo;ai choisir une partition de 2G de swap au lieu de 1G proposé par défaut)</p>
<p><code>Sys. de fich.         Tail. Occ. Disp. %Occ. Monté sur<br />
/dev/sda2             145G  1,8G  136G   2% /<br />
tmpfs                 991M     0  991M   0% /lib/init/rw<br />
proc                     0     0     0   -  /proc<br />
sysfs                    0     0     0   -  /sys<br />
procbususb               0     0     0   -  /proc/bus/usb<br />
udev                   10M  480K  9,6M   5% /dev<br />
tmpfs                 991M     0  991M   0% /dev/shm<br />
devpts                   0     0     0   -  /dev/pts<br />
/dev/sda1             190M   26M  155M  14% /boot</code></p>
<p>Maintenant, le bench HardInfo :</p>
<p><code>hardinfo<br />
Computer<br />
 Summary<br />
 Operating System<br />
 Kernel Modules<br />
 Boots<br />
 Languages<br />
 Filesystems<br />
 Shared Directories<br />
 Display<br />
 Network Interfaces<br />
 Users<br />
Devices<br />
 Processor<br />
 Memory<br />
 PCI Devices<br />
 USB Devices<br />
 Printers<br />
 Battery<br />
 Sensors<br />
 Input Devices<br />
 Storage<br />
Benchmarks<br />
 CPU ZLib</p>
<p>*** Warning: Cannot load ZLib: /usr/lib/libz.so: Ne peut ouvrir le fichier d'objet partagé: Aucun fichier ou répertoire de ce type</p>
<p> CPU Fibonacci<br />
 CPU MD5<br />
 CPU SHA1<br />
 CPU Blowfish<br />
 FPU Raytracing</p>
<p>Computer<br />
********</p>
<p>Summary<br />
-------</p>
<p>-Computer-<br />
Processor               : VIA Nano processor U2250 (1.6GHz Capable)<br />
Memory          : 2028MB (70MB used)<br />
Operating System                : Debian GNU/Linux 5.0.4<br />
User Name               : root (root)<br />
Date/Time               : lun 27 déc 2010 04:22:39 CET<br />
-Display-<br />
Resolution              : 0x0 pixels<br />
OpenGL Renderer         : Unknown<br />
X11 Vendor              : (null)<br />
-Multimedia-<br />
Audio Adapter           : (null)<br />
-Input Devices-<br />
 Macintosh mouse button emulation<br />
 PC Speaker<br />
 Sleep Button<br />
 Power Button<br />
 Power Button<br />
-Printers-<br />
No printers found<br />
-IDE Disks-</p>
<p>Operating System<br />
----------------</p>
<p>-Version-<br />
Kernel          : Linux 2.6.32-bpo.5-amd64 (x86_64)<br />
Compiled                : #1 SMP Mon Dec 13 17:10:39 UTC 2010<br />
C Library               : GNU C Library version 2.7 (stable)<br />
Distribution            : Debian GNU/Linux 5.0.4<br />
-Current Session-<br />
Computer Name           : nttserv<br />
User Name               : root (root)<br />
Home Directory          : /root<br />
Desktop Environment             : Terminal<br />
-Misc-<br />
Uptime          : 24 minutes<br />
Load Average            : 0,00, 0,00, 0,00</p>
<p>Kernel Modules<br />
--------------</p>
<p>-Loaded Modules-<br />
evdev           : Input driver event char devices<br />
dcdbas          : Dell Systems Management Base Driver (version 5.6.0-3.2)<br />
i2c_viapro              : vt82c596 SMBus driver<br />
snd_pcm         : Midlevel PCM code for ALSA.<br />
psmouse         : PS/2 mouse driver<br />
snd_timer               : ALSA timer interface<br />
button          : ACPI Button Driver<br />
processor               : ACPI Processor Driver<br />
shpchp          : Standard Hot Plug PCI Controller Driver<br />
serio_raw               : Raw serio driver<br />
i2c_core                : I2C-Bus main module<br />
snd             : Advanced Linux Sound Architecture driver for soundcards.<br />
pci_hotplug             : PCI Hot Plug PCI Core<br />
soundcore               : Core sound module<br />
snd_page_alloc          : Memory allocator for ALSA system.<br />
pcspkr          : PC Speaker beeper driver<br />
ext3            : Second Extended Filesystem with journaling extensions<br />
jbd<br />
mbcache         : Meta block cache (for extended attributes)<br />
raid10<br />
raid456<br />
async_raid6_recov               : asynchronous RAID-6 recovery api<br />
async_pq                : asynchronous raid6 syndrome generation/validation<br />
raid6_pq<br />
async_xor               : asynchronous xor/xor-zero-sum api<br />
xor<br />
async_memcpy            : asynchronous memcpy api<br />
async_tx                : Asynchronous Bulk Memory Transactions API<br />
raid1<br />
raid0<br />
multipath<br />
linear<br />
md_mod<br />
sd_mod          : SCSI disk (sd) driver<br />
crc_t10dif              : T10 DIF CRC calculation<br />
ata_generic             : low-level driver for generic ATA<br />
pata_via                : low-level driver for VIA PATA<br />
ehci_hcd                : USB 2.0 &amp;apos;Enhanced&amp;apos; Host Controller (EHCI) Driver<br />
uhci_hcd                : USB Universal Host Controller Interface driver<br />
libata          : Library module for ATA devices<br />
usbcore<br />
nls_base<br />
scsi_mod                : SCSI core<br />
e1000e          : Intel(R) PRO/1000 Network Driver<br />
thermal         : ACPI Thermal Zone Driver<br />
fan             : ACPI Fan Driver<br />
thermal_sys             : Generic thermal management sysfs support</p>
<p>Boots<br />
-----</p>
<p>-Boots-<br />
Mon Dec 27 03:58 - 04:22 (00:24)                : Kernel 2.6.32-bpo.5-amd<br />
Mon Dec 27 03:53 - 03:56 (00:02)                : Kernel 2.6.32-bpo.5-amd<br />
Mon Dec 27 03:04 - 03:56 (00:52)                : Kernel 2.6.32-bpo.5-amd</p>
<p>Languages<br />
---------</p>
<p>-Available Languages-<br />
français                : French locale for France<br />
french          : French locale for France<br />
fr_FR           : French locale for France<br />
fr_FR@euro              : French locale for France with Euro<br />
fr_FR.iso88591          : French locale for France<br />
fr_FR.iso885915         : French locale for France with Euro</p>
<p>Filesystems<br />
-----------</p>
<p>-Mounted File Systems-<br />
/dev/sda2               : 144,5 GiB total, 136,3 GiB free<br />
tmpfs           : 990,3 MiB total, 990,3 MiB free<br />
proc            : 0,0 B total, 0,0 B free<br />
sysfs           : 0,0 B total, 0,0 B free<br />
procbususb              : 0,0 B total, 0,0 B free<br />
udev            : 10,0 MiB total, 9,5 MiB free<br />
tmpfs           : 990,3 MiB total, 990,3 MiB free<br />
devpts          : 0,0 B total, 0,0 B free<br />
/dev/sda1               : 189,9 MiB total, 155,0 MiB free</p>
<p>Shared Directories<br />
------------------</p>
<p>-SAMBA-<br />
Cannot open /etc/samba/smb.conf<br />
-NFS-</p>
<p>Display<br />
-------</p>
<p>-Display-<br />
Resolution              : 0x0 pixels<br />
Vendor          : (null)<br />
Version         : (null)<br />
-Monitors-<br />
-Extensions-</p>
<p>Network Interfaces<br />
------------------</p>
<p>-Network Interfaces-<br />
lo              : Sent 0,13MiB, received 0,13MiB (127.0.0.1)<br />
eth0            : Sent 3,72MiB, received 21,99MiB (88.191.132.66)<br />
eth1            : Sent 0,00MiB, received 0,00MiB</p>
<p>Users<br />
-----</p>
<p>-Human Users-<br />
pcinfoweb<br />
-System Users-<br />
root            : root<br />
daemon          : daemon<br />
bin             : bin<br />
sys             : sys<br />
sync            : sync<br />
games           : games<br />
man             : man<br />
lp              : lp<br />
mail            : mail<br />
news            : news<br />
uucp            : uucp<br />
proxy           : proxy<br />
www-data                : www-data<br />
backup          : backup<br />
list            : Mailing List Manager<br />
irc             : ircd<br />
gnats           : Gnats Bug-Reporting System (admin)<br />
nobody          : nobody<br />
libuuid<br />
Debian-exim<br />
statd<br />
bind<br />
ntpd<br />
sshd</p>
<p>Devices<br />
*******</p>
<p>Processor<br />
---------</p>
<p>-Processor-<br />
Name            : VIA Nano processor U2250 (1.6GHz Capable)<br />
Family, model, stepping         : 6, 15, 3 (Centaur i386 class)<br />
Vendor          : CentaurHauls<br />
-Configuration-<br />
Cache Size              : 1024kb<br />
Frequency               : 1595,00MHz<br />
BogoMIPS                : 3191,00<br />
Byte Order              : Little Endian<br />
-Features-<br />
FDIV Bug                : yes<br />
HLT Bug         : yes<br />
F00F Bug                : yes<br />
Coma Bug                : yes<br />
Has FPU         : yes<br />
-Capabilities-<br />
fpu             : Floating Point Unit<br />
vme             : Virtual 86 Mode Extension<br />
de              : Debug Extensions - I/O breakpoints<br />
pse             : Page Size Extensions (4MB pages)<br />
tsc             : Time Stamp Counter and RDTSC instruction<br />
msr             : Model Specific Registers<br />
pae             : Physical Address Extensions<br />
mce             : Machine Check Architeture<br />
cx8             : CMPXCHG8 instruction<br />
apic            : Advanced Programmable Interrupt Controller<br />
sep             : Fast System Call (SYSENTER/SYSEXIT)<br />
mtrr            : Memory Type Range Registers<br />
pge             : Page Global Enable<br />
mca             : Machine Check Architecture<br />
cmov            : Conditional Move instruction<br />
pat             : Page Attribute Table<br />
clflush         : Cache Line Flush instruction<br />
acpi            : Thermal Monitor and Software Controlled Clock<br />
mmx             : MMX technology<br />
fxsr            : FXSAVE and FXRSTOR instructions<br />
sse             : SSE instructions<br />
sse2            : SSE2 (WNI) instructions<br />
ss              : Self Snoop<br />
tm              : Thermal Monitor<br />
pbe             : Pending Break Enable<br />
syscall         : SYSCALL and SYSEXIT instructions<br />
nx              : No-execute Page Protection<br />
lm<br />
constant_tsc<br />
up<br />
rep_good<br />
pni<br />
monitor<br />
vmx<br />
est<br />
tm2<br />
ssse3<br />
cx16<br />
xtpr<br />
rng<br />
rng_en<br />
ace<br />
ace_en<br />
ace2<br />
phe<br />
phe_en<br />
lahf_lm</p>
<p>Memory<br />
------</p>
<p>-Memory-<br />
Total Memory            : 2028088 kB<br />
Free Memory             : 1786444 kB<br />
Buffers         : 10888 kB<br />
Cached          : 171048 kB<br />
Cached Swap             : 0 kB<br />
Active          : 139536 kB<br />
Inactive                : 67096 kB<br />
Active(anon)            : 24704 kB<br />
Inactive(anon)          : 484 kB<br />
Active(file)            : 114832 kB<br />
Inactive(file)          : 66612 kB<br />
Unevictable             : 0 kB<br />
Mlocked         : 0 kB<br />
Virtual Memory          : 2096472 kB<br />
Free Virtual Memory             : 2096472 kB<br />
Dirty           : 8 kB<br />
Writeback               : 0 kB<br />
AnonPages               : 24704 kB<br />
Mapped          : 9004 kB<br />
Shmem           : 492 kB<br />
Slab            : 19132 kB<br />
SReclaimable            : 13572 kB<br />
SUnreclaim              : 5560 kB<br />
KernelStack             : 560 kB<br />
PageTables              : 2108 kB<br />
NFS_Unstable            : 0 kB<br />
Bounce          : 0 kB<br />
WritebackTmp            : 0 kB<br />
CommitLimit             : 3110516 kB<br />
Committed_AS            : 87912 kB<br />
VmallocTotal            : 34359738367 kB<br />
VmallocUsed             : 274392 kB<br />
VmallocChunk            : 34359458584 kB<br />
HardwareCorrupted               : 0 kB<br />
HugePages_Total         : 0<br />
HugePages_Free          : 0<br />
HugePages_Rsvd          : 0<br />
HugePages_Surp          : 0<br />
Hugepagesize            : 2048 kB<br />
DirectMap4k             : 7488 kB<br />
DirectMap2M             : 2056192 kB</p>
<p>PCI Devices<br />
-----------</p>
<p>-PCI Devices-<br />
Host bridge             : VIA Technologies, Inc. VX800 Host Bridge<br />
Host bridge             : VIA Technologies, Inc. VX800/VX820 Error Reporting<br />
Host bridge             : VIA Technologies, Inc. VX800/VX820 Host Bus Control<br />
Host bridge             : VIA Technologies, Inc. VX800 PCI to PCI Bridge<br />
Host bridge             : VIA Technologies, Inc. VX800/VX820 Power Management Control<br />
PIC             : VIA Technologies, Inc. VX800/VX820 APIC and Central Traffic Control<br />
Host bridge             : VIA Technologies, Inc. VX800/VX820 Scratch Registers<br />
Host bridge             : VIA Technologies, Inc. VX800/VX820 North-South Module Interface Control<br />
VGA compatible controller               : VIA Technologies, Inc. Device 1122<br />
PCI bridge              : VIA Technologies, Inc. VX800/VX820 PCI Express Root Port<br />
PCI bridge              : VIA Technologies, Inc. VX800/VX820 PCI Express Root Port<br />
PCI bridge              : VIA Technologies, Inc. VX800/VX820 PCI Express Root Port<br />
IDE interface           : VIA Technologies, Inc. VX800 Serial ATA and EIDE Controller<br />
USB Controller          : VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller<br />
USB Controller          : VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller<br />
USB Controller          : VIA Technologies, Inc. USB 2.0<br />
ISA bridge              : VIA Technologies, Inc. VX800/VX820 Bus Control and Power Management<br />
Host bridge             : VIA Technologies, Inc. VX800/VX820 South-North Module Interface Control<br />
PCI bridge              : VIA Technologies, Inc. Device b353<br />
Ethernet controller             : Intel Corporation 82574L Gigabit Network Connection<br />
Ethernet controller             : Intel Corporation 82574L Gigabit Network Connection</p>
<p>USB Devices<br />
-----------</p>
<p>Printers<br />
--------</p>
<p>-Printers-<br />
No printers found</p>
<p>Battery<br />
-------</p>
<p>-No batteries-<br />
No batteries found on this system</p>
<p>Sensors<br />
-------</p>
<p>Input Devices<br />
-------------</p>
<p>-Input Devices-<br />
 Macintosh mouse button emulation<br />
 PC Speaker<br />
 Sleep Button<br />
 Power Button<br />
 Power Button</p>
<p>Storage<br />
-------</p>
<p>-IDE Disks-</p>
<p>Benchmarks<br />
**********</p>
<p>CPU ZLib<br />
--------</p>
<p>-CPU ZLib-<br />
<i>This Machine</i>             : 0,000<br />
PowerPC 740/750 (280.00MHz)             : 2150.597408<br />
Intel(R) Celeron(R) M processor         1.50GHz         : 8761.604561</p>
<p>CPU Fibonacci<br />
-------------</p>
<p>-CPU Fibonacci-<br />
<i>This Machine</i>             : 5,583<br />
Intel(R) Celeron(R) M processor         1.50GHz         : 8.1375674<br />
PowerPC 740/750 (280.00MHz)             : 58.07682</p>
<p>CPU MD5<br />
-------</p>
<p>-CPU MD5-<br />
<i>This Machine</i>             : 39,310<br />
PowerPC 740/750 (280.00MHz)             : 7.115258<br />
Intel(R) Celeron(R) M processor         1.50GHz         : 38.6607998</p>
<p>CPU SHA1<br />
--------</p>
<p>-CPU SHA1-<br />
<i>This Machine</i>             : 35,914<br />
PowerPC 740/750 (280.00MHz)             : 6.761451<br />
Intel(R) Celeron(R) M processor         1.50GHz         : 49.6752776</p>
<p>CPU Blowfish<br />
------------</p>
<p>-CPU Blowfish-<br />
<i>This Machine</i>             : 21,352<br />
Intel(R) Celeron(R) M processor         1.50GHz         : 26.1876862<br />
PowerPC 740/750 (280.00MHz)             : 172.816713</p>
<p>FPU Raytracing<br />
--------------</p>
<p>-FPU Raytracing-<br />
<i>This Machine</i>             : 19,973<br />
Intel(R) Celeron(R) M processor         1.50GHz         : 40.8816714<br />
PowerPC 740/750 (280.00MHz)             : 161.312647</code></p>
<p>Voilà, bonne soirée <img src="//trollfactory.fr/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> </p>
Share and Enjoy:<a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fbenchmark-dedibox-v3-chez-online-net-333" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fbenchmark-dedibox-v3-chez-online-net-333" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/pdf.png" class="sociable-img sociable-hovers" title="PDF" alt="PDF" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Benchmark%20D%C3%A9dibox%20V3%20chez%20Online.net%20-%20http%3A%2F%2Ftrollfactory.fr%2Fbenchmark-dedibox-v3-chez-online-net-333" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Ftrollfactory.fr%2Fbenchmark-dedibox-v3-chez-online-net-333&amp;t=Benchmark%20D%C3%A9dibox%20V3%20chez%20Online.net" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fbenchmark-dedibox-v3-chez-online-net-333&amp;title=Benchmark%20D%C3%A9dibox%20V3%20chez%20Online.net&amp;source=The+Troll%26%23039%3Bs+factory+Geekeries+%26amp%3B+pens%C3%A9es&amp;summary=Bon%2C%20en%20pleine%20installation%20serveur%2C%20je%20prends%20quand%20m%C3%AAme%20le%20temps%20de%20faire%20quelques%20Benchmarks%2C%20et%20je%20me%20dis%20que%20%C3%A7a%20en%20int%C3%A9ressera%20s%C3%BBrement%20certains%20d%27avoir%20les%20r%C3%A9sultats%20%28surtout%20ceux%20qui%20h%C3%A9sitent%20%C3%A0%20choisir%20l%27offre%20%3A%29%20%29.%0D%0A%0D%0ALa%20d%C3%A9dibox%20V3%20es" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://trollfactory.fr/feed" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/rss.png" class="sociable-img sociable-hovers" title="RSS" alt="RSS" /></a><a rel="nofollow" target="_blank"  href="http://www.wikio.fr/vote?url=http%3A%2F%2Ftrollfactory.fr%2Fbenchmark-dedibox-v3-chez-online-net-333" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/wikio.png" class="sociable-img sociable-hovers" title="Wikio FR" alt="Wikio FR" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fbenchmark-dedibox-v3-chez-online-net-333&amp;title=Benchmark%20D%C3%A9dibox%20V3%20chez%20Online.net&amp;bodytext=Bon%2C%20en%20pleine%20installation%20serveur%2C%20je%20prends%20quand%20m%C3%AAme%20le%20temps%20de%20faire%20quelques%20Benchmarks%2C%20et%20je%20me%20dis%20que%20%C3%A7a%20en%20int%C3%A9ressera%20s%C3%BBrement%20certains%20d%27avoir%20les%20r%C3%A9sultats%20%28surtout%20ceux%20qui%20h%C3%A9sitent%20%C3%A0%20choisir%20l%27offre%20%3A%29%20%29.%0D%0A%0D%0ALa%20d%C3%A9dibox%20V3%20es" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Ftrollfactory.fr%2Fbenchmark-dedibox-v3-chez-online-net-333&amp;title=Benchmark%20D%C3%A9dibox%20V3%20chez%20Online.net&amp;notes=Bon%2C%20en%20pleine%20installation%20serveur%2C%20je%20prends%20quand%20m%C3%AAme%20le%20temps%20de%20faire%20quelques%20Benchmarks%2C%20et%20je%20me%20dis%20que%20%C3%A7a%20en%20int%C3%A9ressera%20s%C3%BBrement%20certains%20d%27avoir%20les%20r%C3%A9sultats%20%28surtout%20ceux%20qui%20h%C3%A9sitent%20%C3%A0%20choisir%20l%27offre%20%3A%29%20%29.%0D%0A%0D%0ALa%20d%C3%A9dibox%20V3%20es" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Ftrollfactory.fr%2Fbenchmark-dedibox-v3-chez-online-net-333&amp;title=Benchmark%20D%C3%A9dibox%20V3%20chez%20Online.net&amp;annotation=Bon%2C%20en%20pleine%20installation%20serveur%2C%20je%20prends%20quand%20m%C3%AAme%20le%20temps%20de%20faire%20quelques%20Benchmarks%2C%20et%20je%20me%20dis%20que%20%C3%A7a%20en%20int%C3%A9ressera%20s%C3%BBrement%20certains%20d%27avoir%20les%20r%C3%A9sultats%20%28surtout%20ceux%20qui%20h%C3%A9sitent%20%C3%A0%20choisir%20l%27offre%20%3A%29%20%29.%0D%0A%0D%0ALa%20d%C3%A9dibox%20V3%20es" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/googlebookmark.png" class="sociable-img sociable-hovers" title="Google Bookmarks" alt="Google Bookmarks" /></a><a rel="nofollow" target="_blank"  href="http://technorati.com/faves?add=http%3A%2F%2Ftrollfactory.fr%2Fbenchmark-dedibox-v3-chez-online-net-333" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/technorati.png" class="sociable-img sociable-hovers" title="Technorati" alt="Technorati" /></a><a rel="nofollow" target="_blank"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Ftrollfactory.fr%2Fbenchmark-dedibox-v3-chez-online-net-333" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/sphinn.png" class="sociable-img sociable-hovers" title="Sphinn" alt="Sphinn" /></a><a rel="nofollow" target="_blank"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Ftrollfactory.fr%2Fbenchmark-dedibox-v3-chez-online-net-333&amp;title=Benchmark%20D%C3%A9dibox%20V3%20chez%20Online.net" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/mixx.png" class="sociable-img sociable-hovers" title="Mixx" alt="Mixx" /></a><a rel="nofollow" target="_blank" title="Add to favorites" href="#" onclick="AddToFavorites(); return false;"><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/addtofavorites.png" class="sociable-img sociable-hovers" title="Add to favorites" alt="Add to favorites" /></a><a rel="nofollow" target="_blank"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fbenchmark-dedibox-v3-chez-online-net-333&amp;title=Benchmark%20D%C3%A9dibox%20V3%20chez%20Online.net" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/live.png" class="sociable-img sociable-hovers" title="Live" alt="Live" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=Benchmark%20D%C3%A9dibox%20V3%20chez%20Online.net&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fbenchmark-dedibox-v3-chez-online-net-333" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.scoopeo.com/scoop/new?newurl=http%3A%2F%2Ftrollfactory.fr%2Fbenchmark-dedibox-v3-chez-online-net-333&amp;title=Benchmark%20D%C3%A9dibox%20V3%20chez%20Online.net" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/scoopeo.png" class="sociable-img sociable-hovers" title="Scoopeo" alt="Scoopeo" /></a><a rel="nofollow" target="_blank"  href="http://www.viadeo.com/shareit/share/?url=http%3A%2F%2Ftrollfactory.fr%2Fbenchmark-dedibox-v3-chez-online-net-333&title=Benchmark%20D%C3%A9dibox%20V3%20chez%20Online.net&urllanguage=fr" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/viadeo.png" class="sociable-img sociable-hovers" title="viadeo FR" alt="viadeo FR" /></a><a rel="nofollow" target="_blank"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Ftrollfactory.fr%2Fbenchmark-dedibox-v3-chez-online-net-333" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/identica.png" class="sociable-img sociable-hovers" title="Identi.ca" alt="Identi.ca" /></a><a rel="nofollow" target="_blank"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Ftrollfactory.fr%2Fbenchmark-dedibox-v3-chez-online-net-333&amp;t=Benchmark%20D%C3%A9dibox%20V3%20chez%20Online.net" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/myspace.png" class="sociable-img sociable-hovers" title="MySpace" alt="MySpace" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Ftrollfactory.fr%2Fbenchmark-dedibox-v3-chez-online-net-333&amp;title=Benchmark%20D%C3%A9dibox%20V3%20chez%20Online.net" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Ftrollfactory.fr%2Fbenchmark-dedibox-v3-chez-online-net-333&amp;submitHeadline=Benchmark%20D%C3%A9dibox%20V3%20chez%20Online.net&amp;submitSummary=Bon%2C%20en%20pleine%20installation%20serveur%2C%20je%20prends%20quand%20m%C3%AAme%20le%20temps%20de%20faire%20quelques%20Benchmarks%2C%20et%20je%20me%20dis%20que%20%C3%A7a%20en%20int%C3%A9ressera%20s%C3%BBrement%20certains%20d%27avoir%20les%20r%C3%A9sultats%20%28surtout%20ceux%20qui%20h%C3%A9sitent%20%C3%A0%20choisir%20l%27offre%20%3A%29%20%29.%0D%0A%0D%0ALa%20d%C3%A9dibox%20V3%20es&amp;submitCategory=science&amp;submitAssetType=text" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://trollfactory.fr/benchmark-dedibox-v3-chez-online-net-333/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
