<?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: Caching of Downloaded Code: Testing Results</title>
	<atom:link href="http://alexander.kirk.at/2005/10/11/caching-of-downloaded-code-testing-results/feed/" rel="self" type="application/rss+xml" />
	<link>http://alexander.kirk.at/2005/10/11/caching-of-downloaded-code-testing-results/</link>
	<description></description>
	<lastBuildDate>Tue, 23 Feb 2010 01:32:11 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Aidan Black</title>
		<link>http://alexander.kirk.at/2005/10/11/caching-of-downloaded-code-testing-results/comment-page-1/#comment-5061</link>
		<dc:creator>Aidan Black</dc:creator>
		<pubDate>Thu, 07 Sep 2006 22:35:53 +0000</pubDate>
		<guid isPermaLink="false">http://alexander.kirk.at/?p=30#comment-5061</guid>
		<description>FWIW, IE behavior also changes depending on whether you are using SSL (https). From my own tests, it would appear that SSL prevents it from caching the XmlHttpRequest GET method.</description>
		<content:encoded><![CDATA[<p>FWIW, IE behavior also changes depending on whether you are using SSL (https). From my own tests, it would appear that SSL prevents it from caching the XmlHttpRequest GET method.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cris Perdue</title>
		<link>http://alexander.kirk.at/2005/10/11/caching-of-downloaded-code-testing-results/comment-page-1/#comment-34</link>
		<dc:creator>Cris Perdue</dc:creator>
		<pubDate>Thu, 13 Oct 2005 21:11:40 +0000</pubDate>
		<guid isPermaLink="false">http://alexander.kirk.at/?p=30#comment-34</guid>
		<description>To hopefully clarify one issue a bit further, while Internet Explorer does cache 
responses to XMLHttpRequest, it might cache more than you want
it to.  I find that a Last-modified date in the response is not enough to stop IE6 from
caching, but adding an Expires response header persuades it to re-fetch the page.</description>
		<content:encoded><![CDATA[<p>To hopefully clarify one issue a bit further, while Internet Explorer does cache<br />
responses to XMLHttpRequest, it might cache more than you want<br />
it to.&nbsp;&nbsp;I find that a Last-modified date in the response is not enough to stop IE6 from<br />
caching, but adding an Expires response header persuades it to re-fetch the page.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ajaxian</title>
		<link>http://alexander.kirk.at/2005/10/11/caching-of-downloaded-code-testing-results/comment-page-1/#comment-33</link>
		<dc:creator>Ajaxian</dc:creator>
		<pubDate>Thu, 13 Oct 2005 14:58:02 +0000</pubDate>
		<guid isPermaLink="false">http://alexander.kirk.at/?p=30#comment-33</guid>
		<description>&lt;strong&gt;Browser Caching Behavior Compared&lt;/strong&gt;

We&#039;ve talked about the necessity of using HTTP headers to control caching of content retrieved by XMLHttpRequest on IE. Alexander Kirk takes the conversation a step further with a detailed analysis of: the caching of downloaded code (or On-Demand Java...</description>
		<content:encoded><![CDATA[<p><strong>Browser Caching Behavior Compared</strong></p>
<p>We've talked about the necessity of using HTTP headers to control caching of content retrieved by XMLHttpRequest on IE. Alexander Kirk takes the conversation a step further with a detailed analysis of: the caching of downloaded code (or On-Demand Java...</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Erik Arvidsson</title>
		<link>http://alexander.kirk.at/2005/10/11/caching-of-downloaded-code-testing-results/comment-page-1/#comment-31</link>
		<dc:creator>Erik Arvidsson</dc:creator>
		<pubDate>Wed, 12 Oct 2005 17:15:36 +0000</pubDate>
		<guid isPermaLink="false">http://alexander.kirk.at/?p=30#comment-31</guid>
		<description>Also see http://me.eae.net/archive/2005/04/02/xml-http-performance-and-caching/</description>
		<content:encoded><![CDATA[<p>Also see <a &nbsp;&nbsp; href="http://me.eae.net/archive/2005/04/02/xml-http-performance-and-caching/"&nbsp;&nbsp; rel="nofollow">http://me.eae.net/archive/2005/04/02/xml-http-performance-and-caching/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alexander Kirk</title>
		<link>http://alexander.kirk.at/2005/10/11/caching-of-downloaded-code-testing-results/comment-page-1/#comment-27</link>
		<dc:creator>Alexander Kirk</dc:creator>
		<pubDate>Wed, 12 Oct 2005 09:26:05 +0000</pubDate>
		<guid isPermaLink="false">http://alexander.kirk.at/?p=30#comment-27</guid>
		<description>I have used server side headers &lt;code&gt;Cache-Control&lt;/code&gt; and &lt;code&gt;Last-Modified&lt;/code&gt; (as can be seen in &lt;a href=&quot;http://alexander.kirk.at/area7/2005/10/11/js.phps&quot; rel=&quot;nofollow&quot;&gt;js.phps&lt;/a&gt;). The Browser should use the &lt;code&gt;If-Modified-Since&lt;/code&gt; header by it self. 

I&#039;ve researched &lt;a href=&quot;http://www.mnot.net/cache_docs/&quot;&gt;a bit more&lt;/a&gt; and now explicitly use the &lt;code&gt;Expires&lt;/code&gt; field. I have updated my post with the new results.</description>
		<content:encoded><![CDATA[<p>I have used server side headers <code>Cache-Control</code> and <code>Last-Modified</code> (as can be seen in <a &nbsp;&nbsp; href="http://alexander.kirk.at/area7/2005/10/11/js.phps"&nbsp;&nbsp; rel="nofollow">js.phps</a>). The Browser should use the <code>If-Modified-Since</code> header by it self. </p>
<p>I've researched <a &nbsp;&nbsp;href="http://www.mnot.net/cache_docs/" rel="nofollow">a bit more</a> and now explicitly use the <code>Expires</code> field. I have updated my post with the new results.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Mahemoff</title>
		<link>http://alexander.kirk.at/2005/10/11/caching-of-downloaded-code-testing-results/comment-page-1/#comment-26</link>
		<dc:creator>Michael Mahemoff</dc:creator>
		<pubDate>Wed, 12 Oct 2005 00:32:18 +0000</pubDate>
		<guid isPermaLink="false">http://alexander.kirk.at/?p=30#comment-26</guid>
		<description>Alexander, have you tried setting headers to encourage caching (in the XHR call as well as the server output)?

Also, related to document-write, one thing about script tag insertion is you can insert the script in the head or the body. Who knows if  some browsers handle those differently.</description>
		<content:encoded><![CDATA[<p>Alexander, have you tried setting headers to encourage caching (in the XHR call as well as the server output)?</p>
<p>Also, related to document-write, one thing about script tag insertion is you can insert the script in the head or the body. Who knows if&nbsp;&nbsp;some browsers handle those differently.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marc Brooks</title>
		<link>http://alexander.kirk.at/2005/10/11/caching-of-downloaded-code-testing-results/comment-page-1/#comment-25</link>
		<dc:creator>Marc Brooks</dc:creator>
		<pubDate>Tue, 11 Oct 2005 17:47:54 +0000</pubDate>
		<guid isPermaLink="false">http://alexander.kirk.at/?p=30#comment-25</guid>
		<description>I get consistent results for IE 6.0.2900 (cached, not, cached), and for grins tested inside RSS Bandit, where we also get (cached, not, cached).</description>
		<content:encoded><![CDATA[<p>I get consistent results for IE 6.0.2900 (cached, not, cached), and for grins tested inside RSS Bandit, where we also get (cached, not, cached).</p>
]]></content:encoded>
	</item>
</channel>
</rss>
