![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mautic.corals.io/app/bundles/CacheBundle/Config/ |
<?php declare(strict_types=1); return [ 'routes' => [ 'main' => [], 'public' => [], 'api' => [], ], 'menu' => [], 'services' => [ 'events' => [ 'mautic.cache.clear_cache_subscriber' => [ 'class' => Mautic\CacheBundle\EventListener\CacheClearSubscriber::class, 'tags' => ['kernel.cache_clearer'], 'arguments' => [ 'mautic.cache.provider', 'monolog.logger.mautic', ], ], ], 'other' => [ 'mautic.cache.provider' => [ 'class' => Mautic\CacheBundle\Cache\CacheProvider::class, 'arguments' => [ 'mautic.helper.core_parameters', 'service_container', ], ], 'mautic.cache.adapter.filesystem' => [ 'class' => Mautic\CacheBundle\Cache\Adapter\FilesystemTagAwareAdapter::class, 'arguments' => [ '%mautic.cache_prefix%', '%mautic.cache_lifetime%', '%mautic.tmp_path%', ], 'tag' => 'mautic.cache.adapter', ], 'mautic.cache.adapter.memcached' => [ 'class' => Mautic\CacheBundle\Cache\Adapter\MemcachedTagAwareAdapter::class, 'arguments' => [ '%mautic.cache_adapter_memcached%', '%mautic.cache_prefix%', '%mautic.cache_lifetime%', ], 'tag' => 'mautic.cache.adapter', ], 'mautic.cache.adapter.redis' => [ 'class' => Mautic\CacheBundle\Cache\Adapter\RedisTagAwareAdapter::class, 'arguments' => [ '%mautic.cache_adapter_redis%', '%mautic.cache_prefix%', '%mautic.cache_lifetime%', '%mautic.redis_primary_only%', ], 'tag' => 'mautic.cache.adapter', ], ], 'models' => [], 'validator' => [], ], 'parameters' => [ 'cache_adapter' => 'mautic.cache.adapter.filesystem', 'cache_prefix' => '', 'cache_lifetime' => 86400, 'cache_adapter_memcached' => [ 'servers' => ['memcached://localhost'], 'options' => [ 'compression' => true, 'libketama_compatible' => true, 'serializer' => 'igbinary', ], ], 'cache_adapter_redis' => [ 'dsn' => 'redis://localhost', 'options' => [ 'lazy' => false, 'persistent' => 0, 'persistent_id' => null, 'timeout' => 30, 'read_timeout' => 0, 'retry_interval' => 0, ], ], ], ];