A json-guard decorator to enable schema caching. Works with any PSR-6 cache implementation.
This decorator is experimental until it proves to be worth using.
Via Composer
$ composer require yuloh/json-guard-cached
use Cache\Adapter\Redis\RedisCachePool;
use League\JsonGuard\Dereferencer;
use League\JsonGuard\Cached\CachedDereferencer;
$client = new Redis();
$client->connect('127.0.0.1', 6379);
$cache = new RedisCachePool($client);
$deref = new Dereferencer();
$deref = new CachedDereferencer($cache, $deref);
$schema = $deref->dereference('file://my-schema.json');
$ composer test
The MIT License (MIT). Please see License File for more information.