Add explicit Session caching

This commit is contained in:
Philipp Holzer 2021-12-13 19:40:38 +01:00
commit 5b5cea9335
Signed by: nupplaPhil
GPG key ID: 24A7501396EB5432
6 changed files with 67 additions and 36 deletions

View file

@ -160,13 +160,13 @@ return [
Cache\Capability\ICanCache::class => [
'instanceOf' => Cache\Factory\Cache::class,
'call' => [
['create', [], Dice::CHAIN_CALL],
['createLocal', [], Dice::CHAIN_CALL],
],
],
Cache\Capability\ICanCacheInMemory::class => [
'instanceOf' => Cache\Factory\Cache::class,
'call' => [
['create', [], Dice::CHAIN_CALL],
['createLocal', [], Dice::CHAIN_CALL],
],
],
Lock\Capability\ICanLock::class => [