Skip to content
This repository was archived by the owner on Apr 13, 2020. It is now read-only.

Commit f7871dd

Browse files
committed
Separated fields into different static classes and added a reusable InstanceBuilder
1 parent ad23c8d commit f7871dd

18 files changed

+771
-766
lines changed

config/install/phpfastcache.settings.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ phpfastcache_enabled: false
22
phpfastcache_env: prod
33
phpfastcache_prefix: ''
44
phpfastcache_default_ttl: 900
5-
phpfastcache_htaccess: true
65
phpfastcache_default_driver: files
76
phpfastcache_bins: ['bootstrap', 'menu', 'discovery']
87
phpfastcache_drivers_config:
98
apc: []
109
apcu: []
1110
couchbase:
1211
host: '127.0.0.1'
12+
port: 8091
1313
username: ''
1414
password: ''
1515
bucket: 'default'
@@ -18,9 +18,11 @@ phpfastcache_drivers_config:
1818
files:
1919
security_key: 'auto'
2020
path: ''
21+
htaccess: true
2122
leveldb:
2223
security_key: 'auto'
2324
path: ''
25+
htaccess: true
2426
memcache:
2527
host: '127.0.0.1'
2628
port: 11211
@@ -48,10 +50,11 @@ phpfastcache_drivers_config:
4850
port: 6379
4951
password: ''
5052
timeout: 5
51-
dbindex: '0'
53+
database: '0'
5254
sqlite:
5355
security_key: 'auto'
5456
path: ''
57+
htaccess: true
5558
ssdb:
5659
host: '127.0.0.1'
5760
port: 8888

src/Cache/PhpFastCacheBackend.php

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
/**
1212
* Class PhpFastCacheService
13+
* @todo Uncamelize class name...
1314
*/
1415
class PhpFastCacheBackend implements CacheBackendInterface
1516
{

0 commit comments

Comments
 (0)