I have a script that is consumming too much resource to provide data that could be retrieved only each minute. Is there a way to configure Apache 2 through an .htaccess file to specify headers telling to the client to keep the script result as is for one minute in its cache ?

I know this could be done through the script itself, but I would like to do this through the webserver's configuration.

link|improve this question

feedback

2 Answers

Short answer is no - you need to return the caching headers from the script.

link|improve this answer
FYI you were wrong, look at my answer. – AsTeR Nov 9 '11 at 13:34
feedback
up vote 0 down vote accepted

mod_expires is the good solution.

If you are on a unix-like system :

a2enmode expires
apache2ctl restart

Then you will be able to define expiration condition for a given file or to define cache policy according to mime type through your .htaccess file.

<IfModule mod_expires.c>
    ExpiresActive On

    ExpiresByType image/gif A3600

    <Files scriptToCache.php>
        ExpiresDefault A60
    </Files>
</IfModule>

Here "A3600" means that the file expires 3 600 seconds after access.

More informations here : http://httpd.apache.org/docs/2.0/mod/mod_expires.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.