<?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: Speed up your site with Caching and cache-control</title>
	<atom:link href="http://www.askapache.com/htaccess/speed-up-your-site-with-caching-and-cache-control.html/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.askapache.com/htaccess/speed-up-your-site-with-caching-and-cache-control.html</link>
	<description>Advanced Web Development</description>
	<lastBuildDate>Wed, 18 Nov 2009 23:28:48 -0500</lastBuildDate>
	
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: fara</title>
		<link>http://www.askapache.com/htaccess/speed-up-your-site-with-caching-and-cache-control.html#comment-103396</link>
		<dc:creator>fara</dc:creator>
		<pubDate>Sun, 13 Sep 2009 19:07:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com.com/htaccess/speed-up-your-site-with-caching-and-cache-control.html#comment-103396</guid>
		<description>thanks... very useful article that saved me from searching.
good luck</description>
		<content:encoded><![CDATA[<p>thanks&#8230; very useful article that saved me from searching.<br />
good luck</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Frank</title>
		<link>http://www.askapache.com/htaccess/speed-up-your-site-with-caching-and-cache-control.html#comment-61301</link>
		<dc:creator>Frank</dc:creator>
		<pubDate>Mon, 02 Feb 2009 15:09:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com.com/htaccess/speed-up-your-site-with-caching-and-cache-control.html#comment-61301</guid>
		<description>I find these code quite interesting and i have noticed a better performance in my blog already. What i would like to know if i can use the first code at the beginning of this page: 

&lt;pre&gt;
# Turn on Expires and set default to 0
ExpiresActive On
ExpiresDefault A0
 
# Set up caching on media files for 1 year (forever?)
ExpiresDefault A29030400
Header append Cache-Control &quot;public&quot;
&#160;
 
# Set up caching on media files for 1 week
ExpiresDefault A604800
&lt;/pre&gt;

...  with this other one:

&lt;pre&gt;
# 1 YEAR
Header set Cache-Control &quot;max-age=29030400, public&quot;
&#160;
# 1 WEEK
Header set Cache-Control &quot;max-age=604800, public&quot;
&#160;
# 2 DAYS
Header set Cache-Control &quot;max-age=172800, proxy-revalidate&quot;
&#160;
# 1 MIN
Header set Cache-Control &quot;max-age=60, private, proxy-revalidate&quot;
&lt;/pre&gt;


Since i am not into these things it looks like if i use both of them my website is faster, but i would like an input from you to see if i am right or now.

Also, i understand the second code i wrote in this comment but..  what is the difference between these two codes simply put? thanks and i hope to get a reply from you</description>
		<content:encoded><![CDATA[<p>I find these code quite interesting and i have noticed a better performance in my blog already. What i would like to know if i can use the first code at the beginning of this page: </p>
<pre># Turn on Expires and set default to 0
ExpiresActive On
ExpiresDefault A0

# Set up caching on media files for 1 year (forever?)
ExpiresDefault A29030400
Header append Cache-Control "public"
&nbsp;

# Set up caching on media files for 1 week
ExpiresDefault A604800</pre>
<p>&#8230;  with this other one:</p>
<pre># 1 YEAR
Header set Cache-Control "max-age=29030400, public"
&nbsp;
# 1 WEEK
Header set Cache-Control "max-age=604800, public"
&nbsp;
# 2 DAYS
Header set Cache-Control "max-age=172800, proxy-revalidate"
&nbsp;
# 1 MIN
Header set Cache-Control "max-age=60, private, proxy-revalidate"</pre>
<p>Since i am not into these things it looks like if i use both of them my website is faster, but i would like an input from you to see if i am right or now.</p>
<p>Also, i understand the second code i wrote in this comment but..  what is the difference between these two codes simply put? thanks and i hope to get a reply from you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Erik Bauffman</title>
		<link>http://www.askapache.com/htaccess/speed-up-your-site-with-caching-and-cache-control.html#comment-46252</link>
		<dc:creator>Erik Bauffman</dc:creator>
		<pubDate>Thu, 23 Oct 2008 13:33:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com.com/htaccess/speed-up-your-site-with-caching-and-cache-control.html#comment-46252</guid>
		<description>I was wondering. Say I want to my .css files to be cached for 15 minutes, my .html files for another 30 minutes and no cache at all for my .php files. How can I do this easily ?</description>
		<content:encoded><![CDATA[<p>I was wondering. Say I want to my .css files to be cached for 15 minutes, my .html files for another 30 minutes and no cache at all for my .php files. How can I do this easily ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason</title>
		<link>http://www.askapache.com/htaccess/speed-up-your-site-with-caching-and-cache-control.html#comment-38452</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Tue, 08 Apr 2008 00:24:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com.com/htaccess/speed-up-your-site-with-caching-and-cache-control.html#comment-38452</guid>
		<description>Thanks for the article.  I have been searching for a long time trying to figure out how to use header expires, this was extremely helpful.  You can count on me for a few links here and there!</description>
		<content:encoded><![CDATA[<p>Thanks for the article.  I have been searching for a long time trying to figure out how to use header expires, this was extremely helpful.  You can count on me for a few links here and there!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel</title>
		<link>http://www.askapache.com/htaccess/speed-up-your-site-with-caching-and-cache-control.html#comment-9590</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Sun, 12 Aug 2007 13:44:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com.com/htaccess/speed-up-your-site-with-caching-and-cache-control.html#comment-9590</guid>
		<description>I couldn&#039;t understand some parts of this article o.us poetry, but I guess I just need to check some more resources regarding this, because it sounds interesting.</description>
		<content:encoded><![CDATA[<p>I couldn&#8217;t understand some parts of this article o.us poetry, but I guess I just need to check some more resources regarding this, because it sounds interesting.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
