Questions tagged [opcache]

OPcache is a PHP opcode cache introduced in PHP 5.5 (and is also available as a PECL extension for PHP 5.2+). It is based on the Zend Optimizer+

The Zend OPcache provides faster PHP execution through opcode caching and optimization. It improves PHP performance by storing precompiled script bytecode in the shared memory. This eliminates the stages of reading code from the disk and compiling it on future access. In addition, it applies a few bytecode optimization patterns that make code execution faster.

Also see the OpCache Readme, the PHP OPcache documentation and the PECL OPcache page.

304 questions
-1
votes
1 answer

How to integrate OpCache with Symfony2?

I am new to symfony. I want to integrate OpCache with symfony2. I have no idea that how can I do this. If have any idea please let me know the steps what should I do.
Rohit
  • 403
  • 3
  • 15
-2
votes
1 answer

Not Work Opcache on Wampserver 2.4

i add this following code in php.ini [opcache] zend_extension = "c:/wamp/bin/php/php5.4.16/ext/php_opcache.dll" opcache.enable = 1 opcache.memory_consumption = 300 opcache.interned_strings_buffer = 8 …
Dee_wab
  • 1,171
  • 1
  • 10
  • 23
-2
votes
1 answer

how to install opcache on debian with php 5.4.4?

I am running a Debain PHP5.4.4 and I want to install opcache. I tried with : pecl install opcache pecl install ZendOpache-beta Not good: "No releases available for package " (Since server is in production I don't think it would be safe to…
yarek
  • 11,278
  • 30
  • 120
  • 219
-2
votes
1 answer

Zend OPcache and HHVM both together

My environment is: Ubuntu 14.04 PHP 5.5 nginx 1.7.6 PHP 5.5.19-1+deb.sury.org~trusty+1 (cli) (built: Nov 19 2014 19:33:43) Copyright (c) 1997-2014 The PHP Group Zend Engine v2.5.0, Copyright (c) 1998-2014 Zend Technologies with Zend OPcache…
Dev
  • 371
  • 1
  • 4
  • 19
1 2 3
20
21