@@ -36,21 +36,6 @@ instance, the framework bundle is configured in ``config/packages/framework.yaml
36
36
php_errors :
37
37
log : true
38
38
39
- cache :
40
- # Put the unique name of your app here: the prefix seed
41
- # is used to compute stable namespaces for cache keys.
42
- # prefix_seed: your_vendor_name/app_name
43
-
44
- # The app cache caches to the filesystem by default.
45
- # Other options include:
46
-
47
- # Redis
48
- # app: cache.adapter.redis
49
- # default_redis_provider: redis://localhost
50
-
51
- # APCu (not recommended with heavy random-write workloads as memory fragmentation can cause perf issues)
52
- # app: cache.adapter.apcu
53
-
54
39
.. code-block :: xml
55
40
56
41
<!-- config/packages/framework.xml -->
@@ -70,22 +55,6 @@ instance, the framework bundle is configured in ``config/packages/framework.yaml
70
55
Remove or comment this section to explicitly disable session support. -->
71
56
<framework : session />
72
57
73
- <!-- Put the unique name of your app here: the prefix seed
74
- is used to compute stable namespaces for cache keys.
75
- <framework:cache prefix-seed="your_vendor_name/app_name">
76
- -->
77
- <framework : cache >
78
- <!-- The app cache caches to the filesystem by default.
79
- Other options include: -->
80
-
81
- <!-- Redis -->
82
- <!-- <framework:app>cache.adapter.redis</framework:app>-->
83
- <!-- <framework:default-redis-provider>redis://localhost</framework:default-redis-provider>-->
84
-
85
- <!-- APCu (not recommended with heavy random-write workloads as memory fragmentation can cause perf issues) -->
86
- <!-- <framework:app>cache.adapter.apcu</framework:app>-->
87
- </framework : cache >
88
-
89
58
<framework : php-errors log =" true" />
90
59
</framework : config >
91
60
</container >
@@ -109,19 +78,6 @@ instance, the framework bundle is configured in ``config/packages/framework.yaml
109
78
'php_errors' => [
110
79
'log' => true,
111
80
],
112
- 'cache' => [
113
- //'prefix_seed' => 'your_vendor_name/app_name',
114
-
115
- // The app cache caches to the filesystem by default.
116
- // Other options include:
117
-
118
- // Redis
119
- //'app' => 'cache.adapter.redis',
120
- //'default_redis_provider: 'redis://localhost',
121
-
122
- // APCu (not recommended with heavy random-write workloads as memory fragmentation can cause perf issues)
123
- //'app' => 'cache.adapter.apcu',
124
- ],
125
81
]);
126
82
127
83
The top-level key (here ``framework ``) references configuration for a specific
0 commit comments