sql >> Database teknologi >  >> NoSQL >> Redis

Laravel - Caching veltalende med hyppige opdateringer

Ja det er. Jeg ved ikke, hvordan du laver cache, men du kan til enhver tid erstatte en cache-forekomst:

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);
}


  1. MongoDB $lte Aggregation Pipeline Operator

  2. Sådan bruges Redis Hashes

  3. Sådan gemmer du geospatial information i mongoDB

  4. MongoDB-opdatering med tilstand