Add explicit Session caching

This commit is contained in:
Philipp
2021-12-13 19:40:38 +01:00
parent e7283abaa8
commit 5b5cea9335
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',