Apache Web Server Cache Frequently Used Files To Improve Performance
Q. I'd like to cache few static pages or files that are viewed frequently such as index.html or order.html and so on. How do I cache files under Apache with using proxy solution?
A. You need to use mod_file_cache which can cache frequently requested files that change very infrequently is a technique for reducing server load. mod_file_cache provides two techniques for caching frequently requested static files. These techniques reduce server load when processing requests for these files by doing part of the work (specifically, the file I/O) for serving the file when the server is started rather than during each request.
WARNING! You cannot use this moule for speeding up CGI / php / perl / python dynamic programs. It can only be used for regular files which are usually served by the Apache core content handler.How do I configure mod_file_cache?
Open your httpd.conf file, enter:
# vi httpd.conf
To cache index.html and faqs.html, enter:
MMapFile /var/www/domain.com/index.html
MMapFile /var/www/domain.com/faqs.html
How do I cache all static files in a directory called /kb/?
Try the following code to get listing of all files:
# find /var/www/domain.com/kb/ -type f -print | sed -e 's/.*/mmapfile &/' > /etc/httpd/conf.d/mmap.conf
Now open httpd.conf file, using the Include directive:
Include /etc/httpd/conf.d/mmap.conf
Save and close the file. Restart httpd:
# service httpd restart
References:
- mod_file_cache documentation.
E-mail this to a friend
Printable version
Related Other Helpful FAQs:
- Howto rebuild Apache for Cpanel Linux / UNIX Server (Control Panel)
- How do I find out syntax errors in my Apache web server configuration file?
- Forbidden - You don’t have permission to access this page error and solution
- How To Set Caching DNS Server
- How To Flush Linux / UNIX DNS Cache
Leave a Reply
We encourage your comments, and suggestions. But please stay on topic, be polite, and avoid spam. Thank you very much for stopping by our site!
Tags: apache config, apache web server, cache documentation, cache files, cache index, mmap, server cache, server load, static files




Recent Comments
Yesterday ~ 12 Comments
Yesterday ~ 7 Comments
Yesterday ~ 2 Comments
Yesterday ~ 3 Comments
Yesterday ~ 3 Comments