sixdays / opcache-bundle
Provides a command line task to clear opcache cache from the console
Installs: 59 741
Dependents: 1
Suggesters: 0
Security: 0
Stars: 30
Watchers: 1
Forks: 8
Open Issues: 1
Type:symfony-bundle
Requires
- php: >=5.4.0
- symfony/framework-bundle: >=2.1
This package is not auto-updated.
Last update: 2024-11-19 05:39:12 UTC
README
Provide a command line to clear opcache cache from the console.
The problem with opcache is that it's impossible to clear it from command line. Because even if you enable opcache for PHP CLI, it's a different instance than, say, your Apache PHP or PHP-CGI opcache instance.
The trick here is to create a file in the web dir, execute it through HTTP, then remove it.
Installation
-
Add it to your composer.json:
{ "require": { "sixdays/opcache-bundle": "dev-master" } }
or:
composer require sixdays/opcache-bundle composer update sixdays/opcache-bundle
-
Add this bundle to your application kernel:
// app/AppKernel.php public function registerBundles() { return array( // ... new Sixdays\OpcacheBundle\SixdaysOpcacheBundle(), // ... ); }
-
Configure
sixdays_opcache
service:# app/config/config.yml sixdays_opcache: base_url: http://localhost/ #could also be https://, or http://127.0.0.1:8000/, or any other valid URL web_dir: %kernel.root_dir%/../web
Usage
Clear all opcache cache:
$ php app/console opcache:clear
Capifony usage
To automatically clear opcache cache after each capifony deploy you can define a custom task
namespace :symfony do desc "Clear opcache cache" task :clear_opcache do capifony_pretty_print "--> Clear opcache cache" run "#{try_sudo} sh -c 'cd #{latest_release} && #{php_bin} #{symfony_console} opcache:clear --env=#{symfony_env_prod}'" capifony_puts_ok end end
and add this hook
# opcache after "deploy", "symfony:clear_opcache"
Nginx configuration
If you are using nginx and limiting PHP scripts that you are passing to fpm you need to allow 'opcache' prefixed php files. Otherwise your web server will return the requested PHP file as text and the system won't be able to clear the opcache cache.
Example configuration:
# Your virtual host
server {
...
location ~ ^/(app|app_dev|opcache-.*)\.php(/|$) { { # This will allow opcache (opcache-{MD5HASH}.php) files to be processed by fpm
fastcgi_pass 127.0.0.1:9000;
...