Laravel5 - Cache ::永远记住

时间:2016-10-10 23:59:35

标签: php caching laravel-5.3

我试图使用remember方法实现laravel的缓存。那么如何实现这一点呢?我尝试将0null作为分钟传递,但它不起作用。

我希望缓存存储直到它撤销我的代码(即永远)。

由于

2 个答案:

答案 0 :(得分:1)

我发现自己的答案是使用rememberForever。像这样:

$my_data = Cache::rememberForever('key_123', function(){
//fetch from db and add to cache if not found
}

答案 1 :(得分:0)

只需致电Cache::forever('key','value')