search
HomeBackend DevelopmentPHP TutorialDetailed explanation of APC configuration_PHP tutorial
Detailed explanation of APC configuration_PHP tutorialJul 13, 2016 pm 05:44 PM
apcphp.iniInstallarticleDetailed explanationConfiguration

I. APC installation configuration

Refer to my article

II. Detailed explanation of the php.ini configuration item [APC] section

[apc]

; alternative php cache is used to cache and optimize php intermediate code

apc.cache_by_default = on

;sys

; Whether to enable buffering by default for all files.

; If set to off and used with the apc.filters directive starting with a plus sign, files will only be cached if they match the filter.

apc.enable_cli = off

;sys

; Whether to enable apc functionality for the cli version, turn this directive on only for testing and debugging purposes.

apc.enabled = on

; Whether to enable apc. If apc is statically compiled into php and you want to disable it, this is the only way.

apc.file_update_protection = 2

;sys

; When you modify files on a running server, you should perform atomic operations.

; That is, first write to a temporary file, and then rename (mv) the file to the final name.

; Text editors and programs such as cp and tar do not operate in this way, resulting in the possibility of buffering incomplete files.

; The default value 2 means that when accessing a file, if the modification time is found to be less than 2 seconds from the access time, no buffering will be performed.

; The unlucky visitor may get corrupted content, but the bad effect is not amplified by caching.

; If you can ensure that all update operations are atomic, you can turn off this feature with 0.

; If your system updates slowly due to heavy IO operations, you may need to increase this value.

apc.filters =

;sys

; A comma-separated list of POSIX extended regular expressions.

; If the source file name matches any of the patterns, the file is not cached.

; Note that the file name used to match is the file name passed to include/require, not the absolute path.

; If the first character of the regular expression is "+" it means that any files matching the expression will be cached,

; If the first character is "-" then any matches will not be cached. "-" is the default value and can be omitted.

apc.ttl = 0

;sys

; The number of seconds a cache entry is allowed to stay in the buffer. 0 means never times out. The recommended value is 7200~36000.

; Setting to 0 means that the buffer may become filled with old cache entries, preventing new entries from being cached.

apc.user_ttl = 0

;sys

; Similar to apc.ttl, but for each user, the recommended value is 7200~36000.

; Setting to 0 means that the buffer may become filled with old cache entries, preventing new entries from being cached.

apc.gc_ttl = 3600

;sys

; The number of seconds a cache entry can exist in the garbage collection table.

; This value provides a safety measure even if a server process crashes while executing a cached source file,

; and the source file has been modified, the memory allocated for the old version will not be reclaimed until this ttl value is reached.

; Set to zero to disable this feature.

apc.include_once_override = off

;sys

; There is currently no documentation for this command, see: http://pecl.php.net/bugs/bug.php?id=8754

; Please keep it off, otherwise it may cause unexpected results.

apc.max_file_size = 1m

;sys

; Prevent files larger than this size from being cached.

apc.mmap_file_mask =

;sys

; If mmap support is compiled for apc using --enable-mmap (enabled by default),

; The value here is the mktemp-style file mask passed to the mmap module (the recommended value is "/tmp/apc.xxxxxx").

; This mask is used to determine whether the memory mapped area should be file-backed or shared memory backed.

; For direct file-backed memory mapping, set it to "/tmp/apc.xxxxxx" (exactly 6 x's).

; To use posix-style shm_open/mmap, it needs to be set to "/apc.shm.xxxxxx".

; You can also set to "/dev/zero" to use the kernel's "/dev/zero" interface for anonymously mapped memory.

; Not defining this directive forces the use of anonymous mapping.

apc.num_files_hint = 1000

;sys

; The approximate number of different source files that may be included or requested on the web server (recommended value is 1024~4096).

; If you are not sure, set to 0; This setting is mainly used for sites with thousands of source files.

apc.optimization = 0

; Optimization level (recommended value is 0).

; A positive integer value enables the optimizer, with higher values ​​using more aggressive optimizations.

; Higher values ​​may have very limited speed improvements, but are currently experimental.

apc.report_autofilter = off

;sys

; Whether to record all scripts that are automatically not cached due to early/late binding reasons.

apc.shm_segments = 1

;sys

; The number of shared memory blocks allocated for the compiler buffer (recommended value is 1).

; If apc has exhausted shared memory and the apc.shm_size directive has been set to the maximum allowed by the system,

; You can try increasing this value.

apc.shm_size = 30

;sys

; The size of each shared memory block (in MB, the recommended value is 128~256).

; Some systems (including most BSD variants) have a very small default shared memory block size.

apc.slam_defense = 0

;sys (It is against the use of this command, it is recommended to use the apc.write_lock command)

; On a very busy server, whether starting a service or modifying a file,

; can cause a race condition due to multiple processes trying to cache a file at the same time.

; This directive is used to set the percentage at which the process skips the caching step when processing uncached files.

; For example, setting it to 75 means that there is a 75% probability of not caching when an uncached file is encountered, thereby reducing the chance of collision.

; Encouraged to be set to 0 to disable this feature.

apc.stat = on

;sys

; Whether to enable script update checking.

; Be very careful when changing this directive value.

; The default value on means that apc checks whether the script has been updated every time it is requested,

; Automatically recompile and cache the compiled content if updated. However, doing so has a negative impact on performance.

; If set to off, no checking is performed, thus greatly improving performance.

; But in order for the updated content to take effect, you must restart the web server.

; This directive is also valid for include/require files. But it should be noted that

; If you use relative paths, apc must check to locate the file every include/require.

; Using absolute paths can skip the check, so you are encouraged to use absolute paths for include/require operations.

apc.user_entries_hint = 100

;sys

; Similar to the num_files_hint directive, but for each different user.

; If you are not sure, set to 0.

apc.write_lock = on

;sys

; Whether to enable write lock.

; On a very busy server, whether starting a service or modifying a file,

; can cause a race condition due to multiple processes trying to cache a file at the same time.

; Enable this directive to avoid race conditions.

apc.rfc1867 = off

;sys

; After turning on this directive, for each uploaded file that contains the apc_upload_progress field just before the file field,

; apc will automatically create a user cache entry for upload_ (which is the apc_upload_progress field value).

III. Function:

apc_cache_info - retrieves cached information (and meta-data) from apc's data store

apc_clear_cache - clears the apc cache

apc_define_constants - defines a set of constants for later retrieval and mass-definition

apc_delete - removes a stored variable from the cache

apc_fetch - fetch a stored variable from the cache

apc_load_constants - loads a set of constants from the cache

apc_sma_info - retrieves apc's shared memory allocation information

apc_store - cache a variable in the data store

The usage of apc is relatively simple, with only a few functions, listed below.

apc_cache_info () returns cache information

apc_clear_cache() clears the apc cache content.

By default (no parameters), only the system cache is cleared. To clear the user cache, the ‘user’ parameter is required.

apc_define_constants (string key, array constants [, bool case_sensitive]) Add array constants to the cache as constants.

apc_load_constants (string key).

Remove the constant cache.

apc_store ( string key, mixed var [, int ttl] ).

Save data in cache.

apc_fetch(string key).

Get the cache content saved by apc_store

apc_delete(string key).

Delete the content saved by apc_store.

IV. apc management

Go to pecl.php.net to download the apc source code package, there is apc.php, copy it to a place where your web server can access it, and browse to access it.

Management interface functions include:

1. refresh data

2. view host stats

3. system cache entries

4. user cache entries

5. version check

Pay attention to this tool in Section 4, it is very useful

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/478712.htmlTechArticleI. For APC installation configuration, please refer to my article II. Detailed explanation of php.ini configuration item [APC] section [apc] ; alternative php cache is used to cache and optimize php intermediate code apc.cache_by_default = on ;sys ; whether to default...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
如何在Nginx配置Cookie安全策略如何在Nginx配置Cookie安全策略Jun 10, 2023 pm 12:54 PM

随着互联网的不断发展和普及,Web应用程序已成为人们日常生活中必不可少的一部分,这也决定了Web应用程序的安全问题非常重要。在Web应用程序中,Cookie被广泛使用来实现用户身份认证等功能,然而Cookie也存在着安全风险,因此在配置Nginx时,必须设定适当的Cookie安全策略,以保证Cookie的安全性。下面是一些在Nginx中配置Cookie安全策

MySQL连接池的最大连接数如何设置?MySQL连接池的最大连接数如何设置?Jun 30, 2023 pm 12:55 PM

如何配置MySQL连接池的最大连接数?MySQL是一个开源的关系型数据库管理系统,被广泛应用于各种领域的数据存储与管理。在使用MySQL时,我们常常需要使用连接池来管理数据库连接,以提高性能和资源利用率。连接池是一种维护和管理数据库连接的技术,它能够在需要时提供数据库连接,并在不需要时回收连接,从而减少了连接的重复创建和销毁。而连接池的最大连接数则是连接池所

使用GDB调试Linux内核的常用配置技巧使用GDB调试Linux内核的常用配置技巧Jul 05, 2023 pm 01:54 PM

使用GDB调试Linux内核的常用配置技巧引言:在Linux开发中,使用GDB调试内核是一项非常重要的技能。GDB是一款功能强大的调试工具,可以帮助开发者快速定位和解决内核中的bug。本文将介绍一些常用的GDB配置技巧,以及如何使用GDB调试Linux内核。一、配置GDB环境首先,我们需要在Linux系统上配置GDB的环境。请确保你的系统已经安装了GDB工具

Nginx错误页面配置,优雅处理网站故障Nginx错误页面配置,优雅处理网站故障Jul 04, 2023 pm 04:06 PM

Nginx错误页面配置,优雅处理网站故障在现代互联网时代,一个高度稳定和可靠的网站是任何企业或个人追求的目标。然而,由于各种原因,网站可能会经历故障或错误,这可能是由于网络问题、服务器问题或应用程序错误等。为了提供更好的用户体验和优雅地处理任何可能发生的错误,Nginx作为一个强大的Web服务器软件,不仅能够提供高性能的服务,还能够灵活地配置错误页面。在Ng

如何使用Linux进行虚拟网络配置如何使用Linux进行虚拟网络配置Jun 18, 2023 am 11:24 AM

随着云计算、大数据和物联网等技术的日益普及,虚拟化技术成为了当今IT领域的热门话题。虚拟化是通过将一台物理主机划分为多个独立的虚拟机,实现资源的共享和管理的方法。虚拟网络是虚拟化的其中一个重要组成部分,能够满足不同应用之间的网络隔离和互动需求。在本文中,我们将介绍如何使用Linux进行虚拟网络配置。一、Linux虚拟网络的概述在物理网络中,网卡是连接网络设备

如何通过宝塔面板进行UFW防火墙的配置如何通过宝塔面板进行UFW防火墙的配置Jun 21, 2023 am 09:08 AM

在Linux服务器上配置防火墙非常重要,它可以有效地保护服务器免受恶意攻击。在Ubuntu操作系统上,我们可以使用UFW防火墙来保护服务器的安全。在本文中,我们将介绍如何使用宝塔面板配置UFW防火墙。第一步:安装宝塔面板首先,我们需要在Ubuntu上安装宝塔面板。您可以在宝塔官网免费下载宝塔面板的安装包,然后在命令行中运行以下命令来安装宝塔面板:$wget

Intel TXT的安装和配置步骤Intel TXT的安装和配置步骤Jun 11, 2023 pm 06:49 PM

IntelTXT(TrustedExecutionTechnology,可信执行技术)是一种硬件帮助保护系统安全的技术。它通过使用硬件测量模块(TPM)来确保系统启动过程中的完整性,并且可以防止恶意软件攻击。在本文中,我们将讨论IntelTXT的安装和配置步骤,帮助你更好地保护你的系统安全。第一步:检查硬件要求安装IntelTXT前,需要先检查计算

宝塔面板如何进行反向代理的配置宝塔面板如何进行反向代理的配置Jun 21, 2023 am 09:31 AM

宝塔面板是一款非常方便的服务器管理面板,它集成了多种功能,如网站管理、数据库管理、文件管理等。在使用宝塔面板时,有时需要将网站进行反向代理,将请求转发至其他服务器上进行处理。那么,如何进行反向代理的配置呢?下面将介绍详细的步骤。创建网站首先,在宝塔面板中创建一个网站。点击左侧菜单栏中的“网站”,选择“添加站点”按钮,填写相关信息,包括域名、目录、端口等。这里

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.