<?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"
	>
<channel>
	<title>Comments on: Put Your PHP App on Steroids - Optimizing with APC Cache</title>
	<atom:link href="http://www.gen-x-design.com/archives/put-your-php-app-on-steroids-optimizing-with-apc-cache/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.gen-x-design.com/archives/put-your-php-app-on-steroids-optimizing-with-apc-cache/</link>
	<description>All Things Web 2.0</description>
	<pubDate>Thu, 07 Aug 2008 18:52:56 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>By: IT-Republik-php</title>
		<link>http://www.gen-x-design.com/archives/put-your-php-app-on-steroids-optimizing-with-apc-cache/#comment-2630</link>
		<dc:creator>IT-Republik-php</dc:creator>
		<pubDate>Fri, 11 Apr 2008 09:44:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.gen-x-design.com/?p=40#comment-2630</guid>
		<description>&lt;strong&gt;Web-Apps auf Speed: Eine Einführung in Caching mit APC...&lt;/strong&gt;

Wenn eine Webanwendung erst einmal populär wird, kann die Last schnell zum ...</description>
		<content:encoded><![CDATA[<p><strong>Web-Apps auf Speed: Eine Einführung in Caching mit APC&#8230;</strong></p>
<p>Wenn eine Webanwendung erst einmal populär wird, kann die Last schnell zum &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ian</title>
		<link>http://www.gen-x-design.com/archives/put-your-php-app-on-steroids-optimizing-with-apc-cache/#comment-2617</link>
		<dc:creator>Ian</dc:creator>
		<pubDate>Fri, 11 Apr 2008 08:07:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.gen-x-design.com/?p=40#comment-2617</guid>
		<description>@Jilles

You're right, but I didn't want to try and wrap them up into one post since there's a bit more to getting memcached going  than a simple PECL extension... I did mention right at the closer of the article that I'd hopefully be getting around to working with mecached (I'm just cooking something else up first that should be pretty cool ;)</description>
		<content:encoded><![CDATA[<p>@Jilles</p>
<p>You&#8217;re right, but I didn&#8217;t want to try and wrap them up into one post since there&#8217;s a bit more to getting memcached going  than a simple PECL extension&#8230; I did mention right at the closer of the article that I&#8217;d hopefully be getting around to working with mecached (I&#8217;m just cooking something else up first that should be pretty cool <img src='http://www.gen-x-design.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jilles</title>
		<link>http://www.gen-x-design.com/archives/put-your-php-app-on-steroids-optimizing-with-apc-cache/#comment-2605</link>
		<dc:creator>Jilles</dc:creator>
		<pubDate>Fri, 11 Apr 2008 07:08:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.gen-x-design.com/?p=40#comment-2605</guid>
		<description>This is a good article. One note though: for large systems you'd want a cache that is local to that machine (APC can do this for you), but also a cache that is centralized (ex. memcached). You'll want this as the number of servers is growing, you will increase the cache misses (depending on the data and it's access patterns).</description>
		<content:encoded><![CDATA[<p>This is a good article. One note though: for large systems you&#8217;d want a cache that is local to that machine (APC can do this for you), but also a cache that is centralized (ex. memcached). You&#8217;ll want this as the number of servers is growing, you will increase the cache misses (depending on the data and it&#8217;s access patterns).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ian</title>
		<link>http://www.gen-x-design.com/archives/put-your-php-app-on-steroids-optimizing-with-apc-cache/#comment-2348</link>
		<dc:creator>Ian</dc:creator>
		<pubDate>Wed, 09 Apr 2008 01:44:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.gen-x-design.com/?p=40#comment-2348</guid>
		<description>Christian,

I actually missed a bit of my code in the examples... you have to parse the result set then everything's hunky-dory.  I've updated the samples appropriately (I'm just used to having the pre-parsed from a database abstraction layer)</description>
		<content:encoded><![CDATA[<p>Christian,</p>
<p>I actually missed a bit of my code in the examples&#8230; you have to parse the result set then everything&#8217;s hunky-dory.  I&#8217;ve updated the samples appropriately (I&#8217;m just used to having the pre-parsed from a database abstraction layer)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christian Decker</title>
		<link>http://www.gen-x-design.com/archives/put-your-php-app-on-steroids-optimizing-with-apc-cache/#comment-2345</link>
		<dc:creator>Christian Decker</dc:creator>
		<pubDate>Wed, 09 Apr 2008 01:21:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.gen-x-design.com/?p=40#comment-2345</guid>
		<description>Thanks Ian for responding so quickly. I'm still having a small problem with the above example code as it saves a resource descriptor in the cache. Is the apc_cache intelligent enough to extract the resultrows from the resource, or did I get something wrong with the serialization?</description>
		<content:encoded><![CDATA[<p>Thanks Ian for responding so quickly. I&#8217;m still having a small problem with the above example code as it saves a resource descriptor in the cache. Is the apc_cache intelligent enough to extract the resultrows from the resource, or did I get something wrong with the serialization?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ian</title>
		<link>http://www.gen-x-design.com/archives/put-your-php-app-on-steroids-optimizing-with-apc-cache/#comment-2067</link>
		<dc:creator>Ian</dc:creator>
		<pubDate>Mon, 07 Apr 2008 05:44:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.gen-x-design.com/?p=40#comment-2067</guid>
		<description>@Christian,

You can store anything that php can serialize in the cache... which is just about anything in php ;)

Thanks for the comment!</description>
		<content:encoded><![CDATA[<p>@Christian,</p>
<p>You can store anything that php can serialize in the cache&#8230; which is just about anything in php <img src='http://www.gen-x-design.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Thanks for the comment!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christian Decker</title>
		<link>http://www.gen-x-design.com/archives/put-your-php-app-on-steroids-optimizing-with-apc-cache/#comment-2037</link>
		<dc:creator>Christian Decker</dc:creator>
		<pubDate>Mon, 07 Apr 2008 01:54:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.gen-x-design.com/?p=40#comment-2037</guid>
		<description>Great article, I'm definitely adding APC capabilities into my Database abstraction layer from now on.
I was wondering wether I can store arbitrary datasets into the cache, for example some datastructures for complex routing calculations that I'd like not to repeat every time.</description>
		<content:encoded><![CDATA[<p>Great article, I&#8217;m definitely adding APC capabilities into my Database abstraction layer from now on.<br />
I was wondering wether I can store arbitrary datasets into the cache, for example some datastructures for complex routing calculations that I&#8217;d like not to repeat every time.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
