Skip to content

Commit 7490f41

Browse files
[FrameworkBundle] split cache.yaml out of framework.yaml
1 parent 2126cc2 commit 7490f41

File tree

4 files changed

+20
-30
lines changed

4 files changed

+20
-30
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
framework:
2+
cache:
3+
# Put the unique name of your app here: the prefix seed
4+
# is used to compute stable namespaces for cache keys.
5+
#prefix_seed: your_vendor_name/app_name
6+
7+
# The app cache caches to the filesystem by default.
8+
# Other options include:
9+
10+
# Redis
11+
#app: cache.adapter.redis
12+
#default_redis_provider: redis://localhost
13+
14+
# APCu (not recommended with heavy random-write workloads as memory fragmentation can cause perf issues)
15+
#app: cache.adapter.apcu
16+
17+
# Namespaced pools use the above "app" backend by default
18+
#pools:
19+
#my.dedicated.cache: ~

symfony/framework-bundle/3.3/config/packages/framework.yaml

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,3 @@ framework:
1313
#fragments: true
1414
php_errors:
1515
log: true
16-
17-
cache:
18-
# Put the unique name of your app here: the prefix seed
19-
# is used to compute stable namespaces for cache keys.
20-
#prefix_seed: your_vendor_name/app_name
21-
22-
# The app cache caches to the filesystem by default.
23-
# Other options include:
24-
25-
# Redis
26-
#app: cache.adapter.redis
27-
#default_redis_provider: redis://localhost
28-
29-
# APCu (not recommended with heavy random-write workloads as memory fragmentation can cause perf issues)
30-
#app: cache.adapter.apcu
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../3.3/config/packages/cache.yaml

symfony/framework-bundle/4.2/config/packages/framework.yaml

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,3 @@ framework:
1515
#fragments: true
1616
php_errors:
1717
log: true
18-
19-
cache:
20-
# Put the unique name of your app here: the prefix seed
21-
# is used to compute stable namespaces for cache keys.
22-
#prefix_seed: your_vendor_name/app_name
23-
24-
# The app cache caches to the filesystem by default.
25-
# Other options include:
26-
27-
# Redis
28-
#app: cache.adapter.redis
29-
#default_redis_provider: redis://localhost
30-
31-
# APCu (not recommended with heavy random-write workloads as memory fragmentation can cause perf issues)
32-
#app: cache.adapter.apcu

0 commit comments

Comments
 (0)