From 250b9fbf050bf1eb61377c48219d4d767344a6c4 Mon Sep 17 00:00:00 2001 From: Peter Kokot Date: Tue, 17 Jan 2023 18:51:13 +0100 Subject: [PATCH] Update 14-03-01-Object-Caching.md --- _posts/14-03-01-Object-Caching.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/14-03-01-Object-Caching.md b/_posts/14-03-01-Object-Caching.md index 763b751..56fe9fc 100644 --- a/_posts/14-03-01-Object-Caching.md +++ b/_posts/14-03-01-Object-Caching.md @@ -42,7 +42,7 @@ if ($data === false) { print_r($data); {% endhighlight %} -Note that prior to PHP 5.5, there was APC extension which provided both an object cache and a bytecode cache. The new APCu is a project to bring APC's +Note that prior to PHP 5.5, there was the APC extension which provided both an object cache and a bytecode cache. The new APCu is a project to bring APC's object cache to PHP 5.5+, since PHP now has a built-in bytecode cache (OPcache). ### Learn more about popular object caching systems: