Closed Macek007 closed 2 months ago
I tried to set an empty prefix for the altfile driver, but it didn't work.
Below is the relevant configuration from config/cache.php:
'altfile' => [ 'driver' => 'altfile', 'path' => storage_path('framework/cache/data'), 'lock_path' => storage_path('framework/cache/data'), 'prefix' => '', ],
However, despite this configuration, the default prefix from Laravel was still applied:
'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache_'),
Thanks for the fix. Published in version 6.1.16
I tried to set an empty prefix for the altfile driver, but it didn't work.
Below is the relevant configuration from config/cache.php:
However, despite this configuration, the default prefix from Laravel was still applied: