deployer/docs/contrib/cachetool.md
2021-08-31 23:25:22 +02:00

2.4 KiB

cachetool

Source

Add to your deploy.php

require 'contrib/cachetool.php';

Configuration

  • cachetool (optional): accepts a string with the unix socket or ip address to php-fpm. If cachetool is not given, then the application will look for a cachetool.yml file and read the configuration from there.

    set('cachetool', '/var/run/php-fpm.sock');
    // or
    set('cachetool', '127.0.0.1:9000');
    

You can also specify different cachetool settings for each host:

host('staging')
    ->set('cachetool', '127.0.0.1:9000');

host('production')
    ->set('cachetool', '/var/run/php-fpm.sock');

By default, if no cachetool parameter is provided, this recipe will fallback to the global setting.

If your deployment user does not have permission to access the php-fpm.sock, you can alternatively use the web adapter that creates a temporary php file and makes a web request to it with a configuration like

set('cachetool_args', '--web --web-path=./public --web-url=https://{{hostname}}');

Usage

Since APCu and OPcache deal with compiling and caching files, they should be executed right after the symlink is created for the new release:

after('deploy:symlink', 'cachetool:clear:opcache');
or
after('deploy:symlink', 'cachetool:clear:apcu');

Read more

Read more information about cachetool on the website: http://gordalina.github.io/cachetool/

Configuration

cachetool

Source

cachetool_args

Source

cachetool_options

Source

Tasks

cachetool:clear:opcache

Source

Clearing OPcode cache.

Clear opcache cache

cachetool:clear:apcu

Source

Clearing APCu system cache.

Clear APCU cache

cachetool:clear:stat

Source

Clearing file status and realpath caches.

Clear file status cache, including the realpath cache