Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 631 Bytes

0709.md

File metadata and controls

15 lines (12 loc) · 631 Bytes

How does Opcode Cache improve performance in PHP 5.5+ ?

  • A) Opcache stores precompiled script bytecode in memory, thus removing the need to load and parse scripts on each request.
  • B) Opcode Cache stores objects in memory so that they can be accessed directly by other processes.
  • C) Opcode Cache stores database query results thus eliminating the need of executing those queries again
  • D) Opcode does`not exist in php
Answer

Answer: A