emgag/varnish-towncrier

PHP client for varnish-towncrier

v1.3.0 2021-04-03 11:11 UTC

This package is auto-updated.

Last update: 2024-02-29 03:24:14 UTC


README

build Software License Packagist Version

A PHP client for varnish-towncrier.

Installation

composer require emgag/varnish-towncrier

Usage

use Emgag\VarnishTowncrier\VarnishTowncrier;

$client = new Predis\Client([
    'scheme' => 'tcp',
    'host'   => '127.0.0.1',
    'port'   => '6379'
]);

$vb = new VarnishTowncrier($client);

// BAN using a varnish VCL expression
$vb->ban('example.org', 'expression');
$vb->ban('example.org', ['multiple', 'expressions']);

// BAN using an URL pattern
$vb->banURL('example.org', 'pattern');
$vb->banURL('example.org', ['multiple', 'patterns']);

// PURGE using a path
$vb->purge('example.org', 'path');
$vb->purge('example.org', ['multiple', 'paths']);

// Purge cache surrogate keys
$vb->xkey('example.org', 'key');
$vb->xkey('example.org', ['multiple', 'keys']);

// Soft purge cache surrogate keys
$vb->xkeySoft('example.org', 'key');
$vb->xkeySoft('example.org', ['multiple', 'keys']);

See docs for varnish-towncrier for more details.

License

varnish-towncrier-php is licensed under the MIT License.