Laravel中Redis的问题

时间:2018-09-20 19:35:45

标签: php laravel redis

要存储缓存,我使用Redis。使用此命令后:

php artisan cache:clear --tags=tag

我看到以下错误:

  

无法清除缓存。确保您具有适当的权限

我该如何解决?

1 个答案:

答案 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.');
}