Answer the question
In order to leave comments, you need to log in
How to set up LARAVEL cache correctly?
Please help me set up LARAVEL cache.
I have these settings. The Cache table has been created. Only value is confusing 'connection' => 'null',
'default' => env('CACHE_DRIVER', 'database'),
'database' => [
'driver' => 'database',
'table' => 'cache',
'connection' => 'null',
],
Answer the question
In order to leave comments, you need to log in
'database' => [
'driver' => 'database',
'table' => 'cache',
'connection' => null,
]
'database' => [
'driver' => 'database',
'table' => 'cache',
'connection' => 'mysql',
]
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question