<?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: Golden rule of web caching</title>
	<atom:link href="http://gojko.net/2007/11/29/golden-rule-of-web-caching/feed/" rel="self" type="application/rss+xml" />
	<link>http://gojko.net/2007/11/29/golden-rule-of-web-caching/</link>
	<description>Building software that matters</description>
	<lastBuildDate>Fri, 18 May 2012 13:40:15 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Software Developer Sydney</title>
		<link>http://gojko.net/2007/11/29/golden-rule-of-web-caching/comment-page-1/#comment-27514</link>
		<dc:creator>Software Developer Sydney</dc:creator>
		<pubDate>Sat, 10 May 2008 08:50:26 +0000</pubDate>
		<guid isPermaLink="false">http://gojko.net/2007/11/29/golden-rule-of-web-caching/#comment-27514</guid>
		<description>Thanks a lot .. the problem is that in my case I have so many files so I wonder if static files will work for me, I guess I will have to do some testing ...</description>
		<content:encoded><![CDATA[<p>Thanks a lot .. the problem is that in my case I have so many files so I wonder if static files will work for me, I guess I will have to do some testing &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gojko</title>
		<link>http://gojko.net/2007/11/29/golden-rule-of-web-caching/comment-page-1/#comment-27484</link>
		<dc:creator>gojko</dc:creator>
		<pubDate>Fri, 09 May 2008 15:02:42 +0000</pubDate>
		<guid isPermaLink="false">http://gojko.net/2007/11/29/golden-rule-of-web-caching/#comment-27484</guid>
		<description>&lt;blockquote&gt;One more thing, could you please add the machine specs (esp. the CPU, memory and OS)? This would be really useful.&lt;/blockquote&gt;

This was a while ago, so I may not remember all the details, but off the top of my head, web servers used in the test were dual-core 2.4ghz machines with 4 GB RAM running IIS6 on Windows 2003 server. 

&lt;blockquote&gt;Were you serving a limited number of files? &lt;/blockquote&gt;

yes, i think that it was about 10 files or something like that. IIS also caches recently open files, and that is exactly why frequently accessed stuff should be put into static files.</description>
		<content:encoded><![CDATA[<blockquote><p>One more thing, could you please add the machine specs (esp. the CPU, memory and OS)? This would be really useful.</p></blockquote>
<p>This was a while ago, so I may not remember all the details, but off the top of my head, web servers used in the test were dual-core 2.4ghz machines with 4 GB RAM running IIS6 on Windows 2003 server. </p>
<blockquote><p>Were you serving a limited number of files? </p></blockquote>
<p>yes, i think that it was about 10 files or something like that. IIS also caches recently open files, and that is exactly why frequently accessed stuff should be put into static files.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Software Developer Sydney</title>
		<link>http://gojko.net/2007/11/29/golden-rule-of-web-caching/comment-page-1/#comment-27483</link>
		<dc:creator>Software Developer Sydney</dc:creator>
		<pubDate>Fri, 09 May 2008 14:55:36 +0000</pubDate>
		<guid isPermaLink="false">http://gojko.net/2007/11/29/golden-rule-of-web-caching/#comment-27483</guid>
		<description>Well, actually there&#039;s something I wanted to point out .. AFAIK, Windows caches recently opened files but unfortunately I don&#039;t have enough information on how exactly it does this (tried to search the web but seems that there&#039;s no much information available on the subject, so, I still need to do some more searching), so, could you please give more details on this? Were you serving a limited number of files? This is probably not the real situation on production servers, so, could the test was possibly affected by Windows File caching?

Sorry for spamming your comments section :)</description>
		<content:encoded><![CDATA[<p>Well, actually there&#8217;s something I wanted to point out .. AFAIK, Windows caches recently opened files but unfortunately I don&#8217;t have enough information on how exactly it does this (tried to search the web but seems that there&#8217;s no much information available on the subject, so, I still need to do some more searching), so, could you please give more details on this? Were you serving a limited number of files? This is probably not the real situation on production servers, so, could the test was possibly affected by Windows File caching?</p>
<p>Sorry for spamming your comments section <img src='http://gojko.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Software Developer Sydney</title>
		<link>http://gojko.net/2007/11/29/golden-rule-of-web-caching/comment-page-1/#comment-27482</link>
		<dc:creator>Software Developer Sydney</dc:creator>
		<pubDate>Fri, 09 May 2008 14:36:12 +0000</pubDate>
		<guid isPermaLink="false">http://gojko.net/2007/11/29/golden-rule-of-web-caching/#comment-27482</guid>
		<description>Thanks a lot, actually it&#039;s much clearer now .. I could only suggest that you may also add Response.WriteFile() as it could very possibly be used in an application for serving static files .. actually I&#039;m currently working on a site that includes a social network section so I have profiles for users, I know that IIS can serve static pages faster but unfortunately I have some dynamic parts on the profile pages (e.g. the sign out link in the page header if the users is logged on .. etc), so I&#039;m considering using Response.WriteFile() to work around this.

One more thing, could you please add the machine specs (esp. the CPU, memory and OS)? This would be really useful.

Again, great article, Keep up the good work!</description>
		<content:encoded><![CDATA[<p>Thanks a lot, actually it&#8217;s much clearer now .. I could only suggest that you may also add Response.WriteFile() as it could very possibly be used in an application for serving static files .. actually I&#8217;m currently working on a site that includes a social network section so I have profiles for users, I know that IIS can serve static pages faster but unfortunately I have some dynamic parts on the profile pages (e.g. the sign out link in the page header if the users is logged on .. etc), so I&#8217;m considering using Response.WriteFile() to work around this.</p>
<p>One more thing, could you please add the machine specs (esp. the CPU, memory and OS)? This would be really useful.</p>
<p>Again, great article, Keep up the good work!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gojko</title>
		<link>http://gojko.net/2007/11/29/golden-rule-of-web-caching/comment-page-1/#comment-27451</link>
		<dc:creator>gojko</dc:creator>
		<pubDate>Thu, 08 May 2008 15:11:53 +0000</pubDate>
		<guid isPermaLink="false">http://gojko.net/2007/11/29/golden-rule-of-web-caching/#comment-27451</guid>
		<description>Hi - 1,786.16 means that the stress test recorded 1,786.16 requests per second for a 64k file.

Re IE and html &#8212; it does not honour the headers every time, we had big problems with that. when we renamed the files to .xml, everything worked fine.</description>
		<content:encoded><![CDATA[<p>Hi &#8211; 1,786.16 means that the stress test recorded 1,786.16 requests per second for a 64k file.</p>
<p>Re IE and html &mdash; it does not honour the headers every time, we had big problems with that. when we renamed the files to .xml, everything worked fine.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

