Laravel缓存无效值

时间:2019-03-04 09:14:45

标签: laravel caching laravel-5.7

以这种方式存储空值是一种好习惯吗?

Cache::remember($cacheName, $this->time, function() use ($data) {
    $this->someTransformation($data, ['title', 'url']);
    return 1;
});

重点是:当我没有从Remember方法返回任何内容时-没有缓存,因此我必须调用someTransformation,它再次包含一些API调用。看来这很有效,但我不确定是否还有更好的方法。

0 个答案:

没有答案