Vâng, đúng vậy. Tôi không biết bạn đang thực hiện bộ đệm như thế nào, nhưng bạn có thể thay thế một phiên bản bộ đệm bất kỳ lúc nào:
public function updatePost($post_id, $num_of_views)
{
if (Cache::has('POST.'.$post_id))
{
$post = Cache::get('POST.'.$post_id);
}
else
{
$post = Post::find($post_id);
}
$post->num_of_views = $num_of_views;
$post->save();
Cache::put('POST.'.$post_id, $post);
}