reference/apcu/book.xml
cf3cad79fecf14a50718f490574ada9d3725a4f2
...
...
@@ -2,22 +2,27 @@
2
2
<!-- $Revision$ -->
3
3

4
4
<book xml:id="book.apcu" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
5
+
<?phpdoc extension-membership="pecl" ?>
5
6
<title>APC User Cache</title>
6
7
<titleabbrev>APCu</titleabbrev>
7
8

8
9
<preface xml:id="intro.apcu">
9
10
&reftitle.intro;
10
11
<para>
11
-
APCu is APC stripped of opcode caching.
12
+
APCu is an in-memory key-value store for PHP.
13
+
Keys are of type &string; and values can be any PHP variables.
14
+
APCu only supports userland caching of variables.
12
15
</para>
13
16
<para>
14
-
The first APCu codebase was versioned 4.0.0, it was forked from the head of the APC master branch at the time.
17
+
The APCu cache is per-process on Windows, so when using a process-based
18
+
(rather than thread-based) SAPI, it will not be shared between different processes.
15
19
</para>
16
20
<para>
17
-
PHP 7 support is available as of APCu 5.0.0.
21
+
APCu is APC stripped of opcode caching.
18
22
</para>
19
23
<para>
20
-
APCu can provide a compatibility mode, such that it can provide a drop in replacement for the applicable parts of APC.
24
+
The first APCu codebase was versioned 4.0.0, it was forked from the head of the APC master branch at the time.
25
+
PHP 7 support is available as of APCu 5.0.0. PHP 8 support is available as of APCu 5.1.19.
21
26
</para>
22
27
</preface>
23
28

24
29