partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

commit 36595e52504b3c489d6da6d239c3e6d009efb78c
parent 58398b2908c972f7a0c7c2b603eb8f82b42c1e8c
Author: Felicitus <felicitus@felicitus.org>
Date:   Sat, 28 Nov 2015 15:18:16 +0100

Added cache directives for dunglas and doctrine

Diffstat:
Mapp/config/parameters.php.dist | 26++++++++++++++++++++++++++
1 file changed, 26 insertions(+), 0 deletions(-)

diff --git a/app/config/parameters.php.dist b/app/config/parameters.php.dist @@ -1,5 +1,13 @@ <?php +/*********************************************************************************************************************** + * This is an example file for all PartKeepr-related configuration options. + * + * PartKeepr sets all relevant Symfony2 configurations via this file. If you require more flexibility for your setup, + * create an app/config/config_custom.yml file which will be parsed if it exists. + * + **********************************************************************************************************************/ + /** * Specifies the database driver. Available options are listed on this page: * http://docs.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/configuration.html#driver @@ -111,3 +119,21 @@ $container->setParameter('partkeepr.frontend.motd', "This is a MOTD"); * If set to false, no quota is used. Set it to a numeric value to set a quota. */ $container->setParameter('partkeepr.filesystem.quota', false); + +/** + * Specifies the dunglas cache. Defaults to false. + * You can use the APCu cache by specifying "api.mapping.cache.apc" here. + * + * Further reading: https://api-platform.com/doc/1.0/api-bundle/performances + */ +$container->setParameter('cache.dunglas', false); + +/** + * Specifies the doctrine cache. Defaults to "array", but can be "apc". + * + * Further reading: http://symfony.com/doc/current/bundles/DoctrineBundle/configuration.html#caching-drivers + * + * For complex caching scenarios, you are advised to use a custom configuration file as described at the top of this + * file. + */ +$container->setParameter('cache.doctrine', 'array');