Valinor/tests/Fake/Cache
Maximilian Bösing ccf09fd334
feat: introduce method to warm the cache up
This new method can be used for instance in a pipeline during the build
and deployment of the application.

The cache has to be registered first, otherwise the warmup will end up
being useless.

```php
$cache = new \CuyZ\Valinor\Cache\FileSystemCache('path/to/cache-dir');

$mapperBuilder = (new \CuyZ\Valinor\MapperBuilder())->withCache($cache);

// During the build:
$mapperBuilder->warmup(SomeClass::class, SomeOtherClass::class);

// In the application:
$mapper->mapper()->map(SomeClass::class, [/* … */]);
```

Co-authored-by: Romain Canon <romain.hydrocanon@gmail.com>
2022-05-23 22:01:40 +02:00
..
Compiled feat: extract file watching feature in own cache implementation 2022-05-23 20:28:02 +02:00
FakeCache.php feat: introduce method to warm the cache up 2022-05-23 22:01:40 +02:00
FakeFailingCache.php feat: initial release 2021-11-28 18:21:56 +01:00