要存储缓存,我使用Redis。使用此命令后:
php artisan cache:clear --tags=tag
我看到以下错误:
无法清除缓存。确保您具有适当的权限
我该如何解决?
答案 0 :(得分:1)
我认为该问题与github
中的此问题有关要修复此问题,您可以更改Illuminate \ Cache \ Console \ ClearCommand.php
来自
if (! $successful) {
return $this->error('Failed to clear cache. Make sure you have the appropriate permissions.');
}
到
if ($successful === false) {
return $this->error('Failed to clear cache. Make sure you have the appropriate permissions.');
}