superbalist/json-guard-cached

This package is abandoned and no longer maintained. No replacement package was suggested.

A json-guard decorator to enable schema caching

v1.0 2017-11-08 12:57 UTC

This package is auto-updated.

Last update: 2022-07-13 19:33:57 UTC


README

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.

Install

Via Composer

$ composer require yuloh/json-guard-cached

Usage

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');

Testing

$ composer test

License

The MIT License (MIT). Please see License File for more information.