1 posts in total

Php

Posts tagged

Do you need OPCache

4 min read

From PHP official documentation, we know that: OPCache improves PHP performance by storing precompiled script bytecode in shared memory, thereby removing the need for PHP to load and parse scripts on each request. In other words, after OPCache is configured, the PHP script will ...