From 7b28e887d77dc243ff320b6403959f26010e900b Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Mon, 8 Jan 2018 21:11:17 +0100 Subject: [PATCH] Tweak cache-related section --- .../3.3/config/packages/framework.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/symfony/framework-bundle/3.3/config/packages/framework.yaml b/symfony/framework-bundle/3.3/config/packages/framework.yaml index 0fd7f196..6044daec 100644 --- a/symfony/framework-bundle/3.3/config/packages/framework.yaml +++ b/symfony/framework-bundle/3.3/config/packages/framework.yaml @@ -17,9 +17,9 @@ framework: cache: # The app cache caches to the filesystem by default. Other options include: - # apcu - # app: cache.adapter.apcu + # Redis + #app: cache.adapter.redis + #default_redis_provider: redis://localhost - # redis - # app: cache.adapter.redis - # default_redis_provider: redis://localhost + # APCu (not recommended with heavy random-write workloads as memory fragmentation can cause perf issues) + #app: cache.adapter.apcu