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

AI Hentai Generator
Generate AI Hentai for free.

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

According to benchmarks, Laravel excels in page loading speed and database queries, while CodeIgniter excels in data processing. When choosing a PHP framework, you should consider application size, traffic patterns, and development team skills.

To add a server to Eclipse, follow these steps: Create a server runtime environment Configure the server Create a server instance Select the server runtime environment Configure the server instance Start the server deployment project

Concurrency testing and debugging Concurrency testing and debugging in Java concurrent programming are crucial and the following techniques are available: Concurrency testing: Unit testing: Isolate and test a single concurrent task. Integration testing: testing the interaction between multiple concurrent tasks. Load testing: Evaluate an application's performance and scalability under heavy load. Concurrency Debugging: Breakpoints: Pause thread execution and inspect variables or execute code. Logging: Record thread events and status. Stack trace: Identify the source of the exception. Visualization tools: Monitor thread activity and resource usage.

1. Background of the Construction of 58 Portraits Platform First of all, I would like to share with you the background of the construction of the 58 Portrait Platform. 1. The traditional thinking of the traditional profiling platform is no longer enough. Building a user profiling platform relies on data warehouse modeling capabilities to integrate data from multiple business lines to build accurate user portraits; it also requires data mining to understand user behavior, interests and needs, and provide algorithms. side capabilities; finally, it also needs to have data platform capabilities to efficiently store, query and share user profile data and provide profile services. The main difference between a self-built business profiling platform and a middle-office profiling platform is that the self-built profiling platform serves a single business line and can be customized on demand; the mid-office platform serves multiple business lines, has complex modeling, and provides more general capabilities. 2.58 User portraits of the background of Zhongtai portrait construction

There are a variety of attack methods that can take a website offline, and the more complex methods involve technical knowledge of databases and programming. A simpler method is called a "DenialOfService" (DOS) attack. The name of this attack method comes from its intention: to cause normal service requests from ordinary customers or website visitors to be denied. Generally speaking, there are two forms of DOS attacks: the third and fourth layers of the OSI model, that is, the network layer attack. The seventh layer of the OSI model, that is, the application layer attack. The first type of DOS attack - the network layer, occurs when a large number of of junk traffic flows to the web server. When spam traffic exceeds the network's ability to handle it, the website goes down. The second type of DOS attack is at the application layer and uses combined

To successfully deploy and maintain a PHP website, you need to perform the following steps: Select a web server (such as Apache or Nginx) Install PHP Create a database and connect PHP Upload code to the server Set up domain name and DNS Monitoring website maintenance steps include updating PHP and web servers, and backing up the website , monitor error logs and update content.

How to Implement PHP Security Best Practices PHP is one of the most popular backend web programming languages used for creating dynamic and interactive websites. However, PHP code can be vulnerable to various security vulnerabilities. Implementing security best practices is critical to protecting your web applications from these threats. Input validation Input validation is a critical first step in validating user input and preventing malicious input such as SQL injection. PHP provides a variety of input validation functions, such as filter_var() and preg_match(). Example: $username=filter_var($_POST['username'],FILTER_SANIT

KubernetesOperator simplifies PHP cloud deployment by following these steps: Install PHPOperator to interact with the Kubernetes cluster. Deploy the PHP application, declare the image and port. Manage the application using commands such as getting, describing, and viewing logs.
