apache uses mod_cache to cache images, etc.
1. Introduction
I have written two articles about caching images and static files before. One is caching using varnish, and the other is caching using squid. Of course, apache can also be used to cache images and static files. Below I will I will explain in detail how to complete the installation and configuration
Second, install mod_cache, mod_mem_cache, mod_disk_cache
First check whether these modules are installed when installing apache. If not, install them. Please refer to how to install modules in apache , check whether it is installed
[zhangy@BlackGhost error]$ /usr/local/apache2/bin/httpd -l
If there is no mod_cache.c, mod_mem_cache.c, mod_disk_cache.c, it means that mod_mem_cache and mod_disk_cache are not installed. Install, you can choose one of the two
Three, memory cache configuration
nano /usr/local/apache2/conf/httpd.conf
LoadModule cache_module modules/mod_cache.so
LoadModule mem_cache_module modules/mod_mem_cache.so
CacheEnable mem /images
MCacheSize 4096
MCacheRemovalAlgorithm LRU
MCacheMaxObjectCount 100
MCacheMinObjectSize 1
MCacheMaxObjectSize 204 8
CacheMaxExpire 864000
CacheDefaultExpire 86400
CacheDisable /php
Instructions:
1. CacheEnable mem /images caches the content below images. Mem here is just a cache type that instructs mod_cache to use the memory storage manager by implementing mod_mem_cache. The cache type disk instructs mod_cache to use the disk-based storage management implementation of mod_disk_cache. Cache type, fd instructs mod_cache to use the file descriptor cache implementation mod_mem_cache
2, MCacheSize maximum memory usage, objects inserted in the cache and the object size is larger than the remaining memory will be deleted until new objects can be cached. The deleted objects are selected using the specified algorithm MCacheRemovalAlgorithm
3, MCacheRemovalAlgorithm caching algorithm:
LRU (Least Recently Used)
LRU deletes files without the longest time accessed.
GDSF (GreadyDual Size)
GDSF allocates a priority file cache based on file charges, cache size and misses. Files with lowest priority are deleted first.
4 The default cache expiration time 9, CacheDisable /php does not cache the content under php Check whether the memory has cached things apache to check whether there is anything cached in the memory, it is not easy to check, there is no special tool to check , my method is as follows, 1, browse the picture http://localhost/images/http_imgload.cgi.jpeg2, check [zhangy@BlackGhost error]$ top -b -n13, browse the picture http ://localhost/images/myself.jpeg4, check [zhangy@BlackGhost error]$ top -b -n16018 zhangy 20 0 52612 8172 2484 S 0 0.8 0:00.03 httpd6020 zhangy 20 0 52604 8168 2488 S 0 0.8 0:00.02 httpd
6021 zhangy 20 0 52604 8100 2440 S 0 0.8 0:00.00 httpd6022 zhangy 20 0 52604 81 00 2440 S 0 0.8 0:00.00 httpd
6033 zhangy 20 0 6584 1808 1396 S 0 0.2 0:00.02 bash6076 zhangy 20 0 52612 8136 2464 S 0 0.8 0:00.02 httpd
6077 zhangy 20 0 52612 8124 2448 S 0 0.8 0: 00.05 httpd6078 zhangy 20 0 52612 8168 2488 S 0 0.8 0:00.12 httpd
6079 zhangy 20 0 52612 8168 2488 S 0 0.8 0:00.03 httpd6080 zhangy 20 0 52612 8168 2488 S 0 0.8 0:00.06 httpd
60 81 zhangy 20 0 52612 8116 2448 S 0 0.8 0:00.00 httpd
via 4 above Following the step-by-step operation, you can find that the RES in bold above is constantly increasing. From this, it can be seen that the configuration has been successful.
Four, hard disk cache configuration
nano /usr/local/apache2/conf/httpd.conf
LoadModule cache_module modules/mod_cache.so
LoadModule disk_cache_module modules/mod_disk_cache.so
CacheRoot /home/zhangy/cachetest
#CacheSize 2 56
CacheEnable disk/
CacheDirLevels 4
#CacheMaxFileSize 64000
#CacheMinFileSize 1
#CacheGcDaily 23:59
CacheDirLength 3
Description:
1, cacheroot /home/zhangy/cachetest directory where the cache is stored
2, #CacheSize 256 Cache space size unit KB
3, CacheEnable disk / Set cache mode
4, #CacheMaxFileSize 64000 Maximum cache file size
5, #CacheMinFileSize 1 Minimum cache file size
6, #CacheGcDaily 23:59 Cache cleanup time
7, CacheDirLength 3 Cache folder name sub-character length
8, CacheDirLevels 4 Cache directory, subdirectory level
The commented out part is not supported by my apache version. It's in the official manual. For specific requirements, please refer to the official website
Check cache:
1. Check if there is anything in cacheroot
apache cache
If there is something under CacheRoot, it means it is OK.
2, use htcacheclean to view
[root@BlackGhost cache]# /usr/sbin/htcacheclean -v -p /home/zhangy/cachetest -l 1024M
Statistics:
size limit 1024.0M
total size was 29.2K , total size now 29.2K
total entries was 3, total entries now 3
htcacheclean Some parameter descriptions
-d How often to clear the cache
-D simulates clearing the cache, but it is not really clear
-v Display statistics
-r Completely clear
-t Clear empty directories
-p Cache directory
-l Limit cache size
The above is the content of apache using mod_cache to cache images, etc. Please pay attention to more related content PHP Chinese website (www.php.cn)!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











To set up a CGI directory in Apache, you need to perform the following steps: Create a CGI directory such as "cgi-bin", and grant Apache write permissions. Add the "ScriptAlias" directive block in the Apache configuration file to map the CGI directory to the "/cgi-bin" URL. Restart Apache.

There are 3 ways to view the version on the Apache server: via the command line (apachectl -v or apache2ctl -v), check the server status page (http://<server IP or domain name>/server-status), or view the Apache configuration file (ServerVersion: Apache/<version number>).

When the Apache 80 port is occupied, the solution is as follows: find out the process that occupies the port and close it. Check the firewall settings to make sure Apache is not blocked. If the above method does not work, please reconfigure Apache to use a different port. Restart the Apache service.

Apache connects to a database requires the following steps: Install the database driver. Configure the web.xml file to create a connection pool. Create a JDBC data source and specify the connection settings. Use the JDBC API to access the database from Java code, including getting connections, creating statements, binding parameters, executing queries or updates, and processing results.

How to view the Apache version? Start the Apache server: Use sudo service apache2 start to start the server. View version number: Use one of the following methods to view version: Command line: Run the apache2 -v command. Server Status Page: Access the default port of the Apache server (usually 80) in a web browser, and the version information is displayed at the bottom of the page.

How to configure Zend in Apache? The steps to configure Zend Framework in an Apache Web Server are as follows: Install Zend Framework and extract it into the Web Server directory. Create a .htaccess file. Create the Zend application directory and add the index.php file. Configure the Zend application (application.ini). Restart the Apache Web server.

Apache cannot start because the following reasons may be: Configuration file syntax error. Conflict with other application ports. Permissions issue. Out of memory. Process deadlock. Daemon failure. SELinux permissions issues. Firewall problem. Software conflict.

To delete an extra ServerName directive from Apache, you can take the following steps: Identify and delete the extra ServerName directive. Restart Apache to make the changes take effect. Check the configuration file to verify changes. Test the server to make sure the problem is resolved.
