gember/cache-psr

Gember Event Sourcing Cache adapter based on psr/simple-cache (PSR-16)

dev-main 2024-10-12 13:44 UTC

This package is auto-updated.

Last update: 2024-10-12 13:44:42 UTC


README

Software License PHP Version

Gember Event Sourcing Cache adapter based on psr/simple-cache (PSR-16).

All external dependencies in Gember Event Sourcing are organized into separate packages, making it easy to swap out a vendor adapter for another.

Installation

Install with Composer:

composer require gember/cache-psr

Configuration

Bind this adapter to the Cache interface in your service definitions.

Examples

Vanilla PHP

use Gember\CachePsr\PsrSimpleCache;

$cache = new PsrSimpleCache(
    new SomeSimpleCacheAdapter(), // An implementation of Psr\SimpleCache\CacheInterface of your choice 
);

You will need to install a PSR-16 Cache implementation as well. Some available packages:

Symfony

It is recommended to use the Symfony bundle to configure Gember Event Sourcing. With this bundle, the adapter is automatically set as the default for Cache.

If you're not using the bundle, you can bind it directly to the Cache interface.

Gember\EventSourcing\Util\Cache\Cache:
  class: Gember\CachePsr\PsrSimpleCache\PsrSimpleCache
  arguments:
    - '@cache.app' # or any other Symfony Cache definition of your choice