以这种方式存储空值是一种好习惯吗?
Cache::remember($cacheName, $this->time, function() use ($data) {
$this->someTransformation($data, ['title', 'url']);
return 1;
});
重点是:当我没有从Remember方法返回任何内容时-没有缓存,因此我必须调用someTransformation
,它再次包含一些API调用。看来这很有效,但我不确定是否还有更好的方法。