Add opcache option; change detection during install for cache driver

This commit is contained in:
Nabeel Shahzad
2019-07-18 09:26:33 -04:00
parent a0a6ab027f
commit a9c5be1c70
8 changed files with 147 additions and 50 deletions

View File

@@ -24,7 +24,14 @@ return [
],
'stores' => [
'array' => ['driver' => 'array'],
'apc' => [
'driver' => 'apc',
],
'array' => [
'driver' => 'array',
],
'database' => [
'driver' => 'database',
'table' => 'cache',
@@ -55,6 +62,10 @@ return [
],
],
'opcache' => [
'driver' => 'opcache',
],
'redis' => [
'driver' => 'redis',
'connection' => 'default',