Knowledge Base

Using APC or OPcache with WordPress

This article discusses using APC or OPcache with WordPress.

APC and OPcache are supported on the following hosting packages:
  • Cloudflare Web Hosting
  • VPS (managed, semi-managed, and Cloud VPS)
  • Discount Dedicated server (managed and semi-managed)

About APC and OPcache

The Alternative PHP Cache (APC) and OPcache provide opcode caching. By caching the compiled operation codes (opcodes) of PHP scripts, APC and OPcache enable sites to serve page content significantly faster.

APC is a PHP extension that runs on PHP 5.4 and earlier versions. Because it is a separate extension, it may or may not already be installed on your server. For information about how to determine if APC is installed on your server, please see this article.

OPcache is a drop-in replacement for APC that runs on PHP 5.5 and later versions. OPcache is a core component built into PHP, so it does not require separate installation like APC does.

Using APC or OPcache with WordPress

When APC or OPcache is installed on your server, no additional configuration is required on your part. APC and OPcache work at the web server level, so WordPress itself does not require any special configuration to take advantage of the performance benefits.

More Information