1
0
Fork 0

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

@ -141,6 +141,10 @@ return [
// Whether to use Memcache, Memcached, Redis or APCu to store temporary cache.
'cache_driver' => 'database',
// distributed_cache_driver (database|memcache|memcached|redis)
// Whether to use database, Memcache, Memcached or Redis as a distributed cache.
'distributed_cache_driver' => 'database',
// config_adapter (jit|preload)
// Allow to switch the configuration adapter to improve performances at the cost of memory consumption.
'config_adapter' => 'jit',