<?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: Why you should use Caching in your webapp.</title>
	<atom:link href="http://coderseye.com/2007/why-you-should-use-caching-in-your-webapp.html/feed" rel="self" type="application/rss+xml" />
	<link>http://coderseye.com/2007/why-you-should-use-caching-in-your-webapp.html</link>
	<description>Programming is passion made real</description>
	<lastBuildDate>Fri, 09 Dec 2011 00:27:29 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
	<item>
		<title>By: john speno</title>
		<link>http://coderseye.com/2007/why-you-should-use-caching-in-your-webapp.html#comment-460</link>
		<dc:creator>john speno</dc:creator>
		<pubDate>Thu, 23 Aug 2007 14:17:08 +0000</pubDate>
		<guid isPermaLink="false">http://coderseye.com/2007/why-you-should-use-caching-in-your-webapp.html#comment-460</guid>
		<description>Brilliant! Tack sjÃ¤lv.</description>
		<content:encoded><![CDATA[<p>Brilliant! Tack sjÃ¤lv.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fredrik</title>
		<link>http://coderseye.com/2007/why-you-should-use-caching-in-your-webapp.html#comment-459</link>
		<dc:creator>Fredrik</dc:creator>
		<pubDate>Thu, 23 Aug 2007 11:40:09 +0000</pubDate>
		<guid isPermaLink="false">http://coderseye.com/2007/why-you-should-use-caching-in-your-webapp.html#comment-459</guid>
		<description>&quot;Is that something that django has been made to do yet?&quot;

Why not just use &quot;wget --mirror&quot; against a staging server, and a suitable apache configuration?</description>
		<content:encoded><![CDATA[<p>&#8220;Is that something that django has been made to do yet?&#8221;</p>
<p>Why not just use &#8220;wget &#8211;mirror&#8221; against a staging server, and a suitable apache configuration?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: john speno</title>
		<link>http://coderseye.com/2007/why-you-should-use-caching-in-your-webapp.html#comment-458</link>
		<dc:creator>john speno</dc:creator>
		<pubDate>Wed, 22 Aug 2007 16:37:24 +0000</pubDate>
		<guid isPermaLink="false">http://coderseye.com/2007/why-you-should-use-caching-in-your-webapp.html#comment-458</guid>
		<description>Yes. It writes out static pages like product_one.html with links to static images on disk etc. Any part that needs to be dynamic still is (e.g. the cart and admin interface) and it&#039;s more than just a PayPal frontend. :-)

For a small store it&#039;s quite nice, but I imagine it wouldn&#039;t scale well for larger stores that would need to rebuild their static pages frequently. We do it only rarely and it only takes a few minutes to build just over 300 static pages. On a dedicated server I probably wouldn&#039;t even bother.</description>
		<content:encoded><![CDATA[<p>Yes. It writes out static pages like product_one.html with links to static images on disk etc. Any part that needs to be dynamic still is (e.g. the cart and admin interface) and it&#8217;s more than just a PayPal frontend. <img src='http://coderseye.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>For a small store it&#8217;s quite nice, but I imagine it wouldn&#8217;t scale well for larger stores that would need to rebuild their static pages frequently. We do it only rarely and it only takes a few minutes to build just over 300 static pages. On a dedicated server I probably wouldn&#8217;t even bother.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bruce</title>
		<link>http://coderseye.com/2007/why-you-should-use-caching-in-your-webapp.html#comment-457</link>
		<dc:creator>Bruce</dc:creator>
		<pubDate>Wed, 22 Aug 2007 15:26:51 +0000</pubDate>
		<guid isPermaLink="false">http://coderseye.com/2007/why-you-should-use-caching-in-your-webapp.html#comment-457</guid>
		<description>Hm.  Somewhat, I suppose.  You can choose to use a file cache and give it a long timeout.  But I don&#039;t think that is quite what you mean.

You are saying that your package can write out a set of static pages and they&#039;ll work with no dynamic backend?  If that&#039;s the case, then no.

I personally wouldn&#039;t use such a feature except in rare cases.  The store needs to be dynamic, not only on the front-end, but on the back, tracking inventory, referrers, and providing access to the admin pages.  A static set of pages would be only useful as a generator for a PayPal cart or something similar.</description>
		<content:encoded><![CDATA[<p>Hm.  Somewhat, I suppose.  You can choose to use a file cache and give it a long timeout.  But I don&#8217;t think that is quite what you mean.</p>
<p>You are saying that your package can write out a set of static pages and they&#8217;ll work with no dynamic backend?  If that&#8217;s the case, then no.</p>
<p>I personally wouldn&#8217;t use such a feature except in rare cases.  The store needs to be dynamic, not only on the front-end, but on the back, tracking inventory, referrers, and providing access to the admin pages.  A static set of pages would be only useful as a generator for a PayPal cart or something similar.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: john speno</title>
		<link>http://coderseye.com/2007/why-you-should-use-caching-in-your-webapp.html#comment-456</link>
		<dc:creator>john speno</dc:creator>
		<pubDate>Wed, 22 Aug 2007 13:10:18 +0000</pubDate>
		<guid isPermaLink="false">http://coderseye.com/2007/why-you-should-use-caching-in-your-webapp.html#comment-456</guid>
		<description>There&#039;s a feature I like in the e-commerce app I&#039;ve been using for the past few years. It allows us to build a static version of the site with all the pages written out to disk. That makes things as fast as possible. Is that something that django has been made to do yet?</description>
		<content:encoded><![CDATA[<p>There&#8217;s a feature I like in the e-commerce app I&#8217;ve been using for the past few years. It allows us to build a static version of the site with all the pages written out to disk. That makes things as fast as possible. Is that something that django has been made to do yet?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

