<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: How to make Drupal run 8.5x faster in 5 minutes&#8230;</title>
	<atom:link href="http://www.mostlygeek.com/tech/how-to-make-drupal-run-85x-faster-in-5-minutes/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mostlygeek.com/tech/how-to-make-drupal-run-85x-faster-in-5-minutes/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=rss</link>
	<description>Smothered in Awesome Sauce!</description>
	<lastBuildDate>Thu, 19 Aug 2010 21:53:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: dthed</title>
		<link>http://www.mostlygeek.com/tech/how-to-make-drupal-run-85x-faster-in-5-minutes/comment-page-1/#comment-24644</link>
		<dc:creator>dthed</dc:creator>
		<pubDate>Wed, 02 Jun 2010 17:01:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.mostlygeek.com/2006/08/29/how-to-make-drupal-run-85x-faster-in-5-minutes/#comment-24644</guid>
		<description>Acronyms (ab? APC?)  without explanation are annoying.</description>
		<content:encoded><![CDATA[<p>Acronyms (ab? APC?)  without explanation are annoying.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Drupal Performance Out of the Box (part 5)</title>
		<link>http://www.mostlygeek.com/tech/how-to-make-drupal-run-85x-faster-in-5-minutes/comment-page-1/#comment-24335</link>
		<dc:creator>Drupal Performance Out of the Box (part 5)</dc:creator>
		<pubDate>Wed, 03 Feb 2010 07:17:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.mostlygeek.com/2006/08/29/how-to-make-drupal-run-85x-faster-in-5-minutes/#comment-24335</guid>
		<description>[...] How to make Drupal run 8.5x faster in 5 minutes… [...]</description>
		<content:encoded><![CDATA[<p>[...] How to make Drupal run 8.5x faster in 5 minutes… [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Drupal malaysia</title>
		<link>http://www.mostlygeek.com/tech/how-to-make-drupal-run-85x-faster-in-5-minutes/comment-page-1/#comment-23608</link>
		<dc:creator>Drupal malaysia</dc:creator>
		<pubDate>Thu, 25 Sep 2008 01:17:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.mostlygeek.com/2006/08/29/how-to-make-drupal-run-85x-faster-in-5-minutes/#comment-23608</guid>
		<description>I would be interested to get a local development server fast. But then, as we know, caching works great mainly for anonymous user. Any advise?</description>
		<content:encoded><![CDATA[<p>I would be interested to get a local development server fast. But then, as we know, caching works great mainly for anonymous user. Any advise?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben Wong</title>
		<link>http://www.mostlygeek.com/tech/how-to-make-drupal-run-85x-faster-in-5-minutes/comment-page-1/#comment-181</link>
		<dc:creator>Ben Wong</dc:creator>
		<pubDate>Thu, 31 Aug 2006 18:18:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.mostlygeek.com/2006/08/29/how-to-make-drupal-run-85x-faster-in-5-minutes/#comment-181</guid>
		<description>Your one box does ~ 191 req/sec? That&#039;s pretty fast. I&#039;ll look into MySQL caching as we have another big site (drupal based) that we&#039;re launching and would be good to optimize it as much as possible. 

Thanks for the tips!</description>
		<content:encoded><![CDATA[<p>Your one box does ~ 191 req/sec? That&#8217;s pretty fast. I&#8217;ll look into MySQL caching as we have another big site (drupal based) that we&#8217;re launching and would be good to optimize it as much as possible. </p>
<p>Thanks for the tips!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jeffg</title>
		<link>http://www.mostlygeek.com/tech/how-to-make-drupal-run-85x-faster-in-5-minutes/comment-page-1/#comment-180</link>
		<dc:creator>jeffg</dc:creator>
		<pubDate>Thu, 31 Aug 2006 18:12:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.mostlygeek.com/2006/08/29/how-to-make-drupal-run-85x-faster-in-5-minutes/#comment-180</guid>
		<description>You should also look into using MySQL 5 if you aren&#039;t, and using MySQL query caching. Drupal makes a lot of repetetive databases requests for the same data, which is why the core needs to make much better use of object caching, ideally with an optional apc backend for that object caching.

Remember that ( on a beefier box ) support.activestate.com is seeing hundreds of requests a second on a pretty heavy page:

&lt;code&gt;
Direct against php/apc/one box                                                Requests per second:    190.96 [#/sec] (mean)                                   Time per request:       523.658 [ms] (mean)                              Time per request:       5.237 [ms] (mean, across all concurrent requests)       Transfer rate:          4820.51 [Kbytes/sec] received &lt;/code&gt;

You might want to do some profiling with xdebug to see where your machine is spending all of its time.</description>
		<content:encoded><![CDATA[<p>You should also look into using MySQL 5 if you aren&#8217;t, and using MySQL query caching. Drupal makes a lot of repetetive databases requests for the same data, which is why the core needs to make much better use of object caching, ideally with an optional apc backend for that object caching.</p>
<p>Remember that ( on a beefier box ) support.activestate.com is seeing hundreds of requests a second on a pretty heavy page:</p>
<p><code><br />
Direct against php/apc/one box                                                Requests per second:    190.96 [#/sec] (mean)                                   Time per request:       523.658 [ms] (mean)                              Time per request:       5.237 [ms] (mean, across all concurrent requests)       Transfer rate:          4820.51 [Kbytes/sec] received </code></p>
<p>You might want to do some profiling with xdebug to see where your machine is spending all of its time.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
