From f505e0804092c73585c38d0e87063ced5faf26e2 Mon Sep 17 00:00:00 2001 From: Peter Kokot Date: Mon, 16 Jan 2023 19:27:13 +0100 Subject: [PATCH] Update APC and APCu The maintained APCu extension is the previous APC extension without opcode caching. APC is as of this writing unmaintained. --- _posts/14-02-01-Opcode-Cache.md | 2 -- _posts/14-03-01-Object-Caching.md | 8 ++++---- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/_posts/14-02-01-Opcode-Cache.md b/_posts/14-02-01-Opcode-Cache.md index 18f6376..815879e 100644 --- a/_posts/14-02-01-Opcode-Cache.md +++ b/_posts/14-02-01-Opcode-Cache.md @@ -15,14 +15,12 @@ Read more about opcode caches: * [Zend OPcache][opcache-book] (bundled with PHP since 5.5) * Zend OPcache (formerly known as Zend Optimizer+) is now [open source][Zend Optimizer+] -* [APC] - PHP 5.4 and earlier * [WinCache] (extension for MS Windows Server) * [list of PHP accelerators on Wikipedia][PHP_accelerators] * [PHP Preloading] - PHP >= 7.4 [opcache-book]: https://secure.php.net/book.opcache -[APC]: https://www.php.net/book.apcu [Zend Optimizer+]: https://github.com/zendtech/ZendOptimizerPlus [WinCache]: https://www.iis.net/downloads/microsoft/wincache-extension [PHP_accelerators]: https://wikipedia.org/wiki/List_of_PHP_accelerators diff --git a/_posts/14-03-01-Object-Caching.md b/_posts/14-03-01-Object-Caching.md index 23416e4..763b751 100644 --- a/_posts/14-03-01-Object-Caching.md +++ b/_posts/14-03-01-Object-Caching.md @@ -33,22 +33,22 @@ Example logic using APCu: {% highlight php %}