Skip to content

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

License

Notifications You must be signed in to change notification settings

GemberPHP/cache-psr

Repository files navigation

🫚 Gember Cache: PSR SimpleCache (PSR-16)

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

Releases

No releases published

Packages

No packages published

Languages