<?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: HTTP caching options</title>
	<atom:link href="http://billhiggins.us/blog/2007/05/11/http-caching-options/feed/" rel="self" type="application/rss+xml" />
	<link>http://billhiggins.us/blog/2007/05/11/http-caching-options/</link>
	<description></description>
	<lastBuildDate>Tue, 03 Aug 2010 07:37:23 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Bill Higgins</title>
		<link>http://billhiggins.us/blog/2007/05/11/http-caching-options/comment-page-1/#comment-52</link>
		<dc:creator>Bill Higgins</dc:creator>
		<pubDate>Tue, 15 Jul 2008 11:24:02 +0000</pubDate>
		<guid isPermaLink="false">http://billhiggins.us/weblog/2007/05/11/http-caching-options/#comment-52</guid>
		<description>Hi Mason. I did a quick Google search (link below) and found a couple of promising help documents from Yahoo on manually clearing the cache for their chess game.

http://www.google.com/search?q=yahoo+chess+cache+problem</description>
		<content:encoded><![CDATA[<p>Hi Mason. I did a quick Google search (link below) and found a couple of promising help documents from Yahoo on manually clearing the cache for their chess game.</p>
<p><a href="http://www.google.com/search?q=yahoo+chess+cache+problem" rel="nofollow">http://www.google.com/search?q=yahoo+chess+cache+problem</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mason</title>
		<link>http://billhiggins.us/blog/2007/05/11/http-caching-options/comment-page-1/#comment-51</link>
		<dc:creator>mason</dc:creator>
		<pubDate>Tue, 15 Jul 2008 06:55:02 +0000</pubDate>
		<guid isPermaLink="false">http://billhiggins.us/weblog/2007/05/11/http-caching-options/#comment-51</guid>
		<description>i keep getting this message on the yahoo chess server saying
 &quot;you have an old version of the client in your cach,try deleting tour temporary internet files. if that doesnt work restart the browser.&quot;

ive tried both of those things but none seem to work cna u tell me how i can get it to work?</description>
		<content:encoded><![CDATA[<p>i keep getting this message on the yahoo chess server saying<br />
 &#8220;you have an old version of the client in your cach,try deleting tour temporary internet files. if that doesnt work restart the browser.&#8221;</p>
<p>ive tried both of those things but none seem to work cna u tell me how i can get it to work?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nodalities &#187; Blog Archive &#187; This Week&#8217;s Semantic Web</title>
		<link>http://billhiggins.us/blog/2007/05/11/http-caching-options/comment-page-1/#comment-53</link>
		<dc:creator>Nodalities &#187; Blog Archive &#187; This Week&#8217;s Semantic Web</dc:creator>
		<pubDate>Thu, 17 Apr 2008 17:11:49 +0000</pubDate>
		<guid isPermaLink="false">http://billhiggins.us/weblog/2007/05/11/http-caching-options/#comment-53</guid>
		<description>[...] HTTP caching options [...]</description>
		<content:encoded><![CDATA[<p>[...] HTTP caching options [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bill Higgins</title>
		<link>http://billhiggins.us/blog/2007/05/11/http-caching-options/comment-page-1/#comment-55</link>
		<dc:creator>Bill Higgins</dc:creator>
		<pubDate>Fri, 01 Jun 2007 17:43:59 +0000</pubDate>
		<guid isPermaLink="false">http://billhiggins.us/weblog/2007/05/11/http-caching-options/#comment-55</guid>
		<description>Hi Harini, basically you can specify cache control guidelines for anything you identify with a URI, including HTML pages, scripts, CSS files, images, etc.

If you wanted to specify that the client caches only certain images, you would need to configure your web server to set appropriate cache control headers for the different types of images.

E.g. for the images you DON&#039;T want the client to cache, you&#039;d set a cache control header like this:

&lt;code&gt;Cache-Control: no-cache&lt;/code&gt;

For the images you want the client to cache, you could either set an &lt;code&gt;ETag&lt;/code&gt; or &lt;code&gt;Last-Modified&lt;/code&gt; header for validation-based caching, or an &lt;code&gt;Expires&lt;/code&gt; or &lt;code&gt;Cache-Control: max-age&lt;/code&gt; header for expiration-based caching.

Here are a few links for you for more information:

- &lt;a href=&quot;http://www.mnot.net/cache_docs/&quot; rel=&quot;nofollow&quot;&gt;Mark Nottingham&#039;s Caching Tutorial&lt;/a&gt;
- &lt;a href=&quot;http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.9&quot; rel=&quot;nofollow&quot;&gt;HTTP 1.1 spec, cache-control section&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Hi Harini, basically you can specify cache control guidelines for anything you identify with a URI, including HTML pages, scripts, CSS files, images, etc.</p>
<p>If you wanted to specify that the client caches only certain images, you would need to configure your web server to set appropriate cache control headers for the different types of images.</p>
<p>E.g. for the images you DON&#8217;T want the client to cache, you&#8217;d set a cache control header like this:</p>
<p><code>Cache-Control: no-cache</code></p>
<p>For the images you want the client to cache, you could either set an <code>ETag</code> or <code>Last-Modified</code> header for validation-based caching, or an <code>Expires</code> or <code>Cache-Control: max-age</code> header for expiration-based caching.</p>
<p>Here are a few links for you for more information:</p>
<p>- <a href="http://www.mnot.net/cache_docs/" rel="nofollow">Mark Nottingham&#8217;s Caching Tutorial</a><br />
- <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.9" rel="nofollow">HTTP 1.1 spec, cache-control section</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Harini</title>
		<link>http://billhiggins.us/blog/2007/05/11/http-caching-options/comment-page-1/#comment-54</link>
		<dc:creator>Harini</dc:creator>
		<pubDate>Fri, 01 Jun 2007 07:46:50 +0000</pubDate>
		<guid isPermaLink="false">http://billhiggins.us/weblog/2007/05/11/http-caching-options/#comment-54</guid>
		<description>Can I cache part of my web page at the client side?

For eg, Lets say, my html page has 10 images and I want only 5 images to be cached at the client side.. Can I do it?
If so, please tell me how..

Thanks..</description>
		<content:encoded><![CDATA[<p>Can I cache part of my web page at the client side?</p>
<p>For eg, Lets say, my html page has 10 images and I want only 5 images to be cached at the client side.. Can I do it?<br />
If so, please tell me how..</p>
<p>Thanks..</p>
]]></content:encoded>
	</item>
</channel>
</rss>
