Home Backend Development PHP Tutorial php—Alternative PHP Cache (optional PHP cache)

php—Alternative PHP Cache (optional PHP cache)

Nov 22, 2016 am 09:54 AM
apc php

Introduction and installation configuration

Alternative PHP Cache (APC) is an open and free PHP opcode cache. Its goal is to provide a free, open, and sound framework for caching and optimizing PHP intermediate code.

The installation packages for each version of the extension are here: http://pecl.php.net/package/apc.

The DLL of the PECL extension is currently unavailable.

Note: On Windows, APC needs a temporary directory, and the Web server can write to this directory. APC will detect the Windows environment variables such as TMP, TEMP, and USERPROFILE. If these are not found, it will check the WINDOWS under the system folder. Table of contents.

The behavior of these functions is affected by settings in php.ini.

Although the default APC settings are fine for most installations, professionals should consider adjusting the following parameters.

APC has two main configuration options. First, how much memory will be allocated to APC; second, whether APC checks for file modifications every time it is requested. Two ini options control these settings apc.shm_size and apc.stat respectively.

Once the server is running, the apc.php script can be copied to a web directory that can be accessed through the browser. Accessing this script through the browser will get a detailed analysis of the APC working status, if the GD extension is enabled in PHP , it even displays some interesting graphs. Of course, the first thing to do is to make sure the file is actually cached. If APC is running, the Cache Full Statistics number (in the upper left corner) will show the cache hit rate and clear caches that have not been accessed in the last apc.ttl seconds. This number enables a good configuration of cache minimization. If the cache is constantly being filled and cleared, this will affect cache effectiveness and script performance. The best way to reduce this number is to allocate enough memory to APC. In addition to this, fewer scripts can be cached via apc.filters.

For more introductory articles about APC, please refer to: Optional PHP cache APC analysis - installation, configuration and working principle

APC function

apc_add — cache a variable to data storage

apc_bin_dump — Get a binary dump of the given files and user variables

apc_bin_dumpfile — Output a binary dump of cached files and user variables to a file

apc_bin_load — Load a binary dump into the APC file/user cache

apc_bin_loadfile — Load a binary dump from a file into the APC file/user cache

apc_cache_info — Get cache information from APC’s data store

apc_cas — Update old value to new value

apc_clear_cache — Clear APC cache

apc_compile_file — Stores a file in the bytecode cache, bypassing all filters.

apc_dec — Reduce a stored number

apc_define_constants — Defines a set of constants for retrieval and mass-definition

apc_delete_file — Delete a file from bytecode

apc_delete — Delete a variable from the user cache

apc_exists — Check whether a certain key or keys exist in the APC

apc_fetch — Fetch stored variables from the cache

apc_inc — Increment a stored number

apc_load_constants — Load a series of constants from the cache

apc_sma_info — Fetch Back to APC's shared memory allocation information

apc_store — Cache a variable in the data store

APCIterator class

APCIterator class makes it easier to traverse large APC caches, which is helpful because it allows to fetch every defined The number of entries for the locked instance, so it releases other active cache locks rather than blocking the entire cache to complete the iteration of fetching 100 (default) cache data on large cache entries. In addition, using regular matching is more efficient because it is changed to a C-level implementation.

Method list

APCIterator::__construct — Construct an APCIterator iterator object

APCIterator::current — Get the current item

APCIterator::getTotalCount — Get the total number

APCIterator::getTotalHits — Get the number of cache hits

APCIterator ::getTotalSize — Get the size of all caches

APCIterator::key — Get iterator key Get the key of the iterator

APCIterator::next — Move to the next item

APCIterator::rewind — Rewind the iterator

APCIterator ::valid — Check if the current location is valid


Statement of this Website
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

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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

See all articles