PHP OPcache APCu

上記の「コンパイル」の部分がキャッシュ利用により省略されることで単純に高速化する仕組みで、「OPcache」はソースコード全般を担当し、「APCu」はオブジェクトや変数を担当します。
PHP 7をOPcacheとAPCuで高速化する(PHPアクセラレータ) | 己で解決!泣かぬなら己で鳴こうホトトギス

OPCacheは、PHP 5.5以降で標準となった高性能なPHPアクセラレータです。PHP 5.4にも導入可能です。しかしOPCacheは、APCに備わるユーザーキャッシュ機能を持っていないため、APCと同等のユーザーキャッシュ機能を持つKVSである「APCu」を併せて導入します。APCuのユーザーキャッシュ機能は、後述する翻訳処理の最適化処理で利用します。
CentOS 7の標準環境だけですぐできる、WordPress「5.4倍高速化」テクニック 前編:とにかく速いWordPress(3)(1/3 ページ) - @IT

https://github.com/krakjoe/apcu/blob/master/apc.php

cachetool.phar は OPcache, APCu 対応

curl -sLO https://github.com/gordalina/cachetool/releases/latest/download/cachetool.phar
chmod +x cachetool.phar

./cachetool.phar apcu:cache:info --fcgi=/var/run/php-fpm/www.sock

8.0.0 Removed support for PHP 7.x

https://github.com/gordalina/cachetool/releases/download/7.0.0/cachetool.phar

6.0.0 Remove support for PHP 7.2

https://github.com/gordalina/cachetool/releases/download/5.1.3/cachetool.phar

APCu

apc.entries_hint

A "hint" about the number variables expected in the cache. Set to zero or omit if you're not sure. (Default: 4096)

APCuは速いけど初期設定がイマイチだというお話 - hnwの日記 2014