DEV Community

Kevin Woblick
Kevin Woblick

Posted on • Updated on

Laravel 5: Use Query Caching to make your App really fast

I am currently rebuilding one of my oldest side projects, the Game Quotes Network. As a content-heavy application with a lot of stuff stored in the database it's not that easy to find the best balance between caching your site and delivering the most up-to-date content to your users. There are several methods to achieve content caching to a) minimize the load on your infrastructure and b) make your app load faster, but today it's not about the nginx cache or manually store stuff in the Laravel cache and retrieve it once you need it. Today I want to introduce query caching which reduced the number of database calls to almost zero.

Before we start: what is query caching capable of?

So, before query caches are enabled, the frontpage of Game Quotes uses 42 database queries, uses 5.562MB RAM and loads in 389ms.

gq_query_caching_disabled.png

By implementing query caches for most of the used entities I was able to drop the query caches to 4 queries and the load time dropped by almost 50% to 206ms.

gq_query_caching_enabled.png

As you see, you are able to significantly reduce the load on both the app and the database. One major advantage: caches can be valid until content changes which further reduces load as the content does not have to be fetched again after the cache becomes invalid. I think that's really impressive, so how do we achieve this?

Implementing query caches for Laravel

To be honest, implementing query caching is far from being magic. The major reason for this is the Rememberable package maintained by Dwight Watson. The package is well maintained, easy to use and already compatible with Laravel 5.8. I will show you how to use it.

First, install the package by simply using

composer require watson/rememberable
Enter fullscreen mode Exit fullscreen mode

After that you have to prepare the model you want to enable query caches for. To do so, modify it like this:

use Watson\Rememberable\Rememberable;

class Quote extends Model
{
    use Rememberable;
    ...
}
Enter fullscreen mode Exit fullscreen mode

We now have told the Rememberable package to automatically cache all database queries for this model. Be very careful with this. If you just drop in this line without any further configuration you would have to clear the whole Laravel cache if you want to clear the query cache for your model! To prevent any issues here, we will configure the model now.

Tagging of Query Caches

The first step is to tell Rememberable to tag the cache for this particular model. Caution: this only works with caching that also support tagging, like Redis or Memcached, but not the file cache.

class Quote extends Model
{
    use Rememberable;

    public $rememberCacheTag = 'quote_queries';
}
Enter fullscreen mode Exit fullscreen mode

This option makes it possible to just delete the query caches for our model, which is important to do if content changes. We could do something like this then:

Cache::tags('quote_queries')->flush();
Enter fullscreen mode Exit fullscreen mode

To make things easier you can also use a special method of the Rememberable package so you do not have to remember the cache tag. Call flushCache() on your model to clear the query caches for it:

Quote::flushCache();
// or
$quote->flushCache()
Enter fullscreen mode Exit fullscreen mode

Automatically expire Caches

This step is optional as you may only need to invalidate caches when content changes. However, you may be on the safer side if query caches do not last forever. Simply add the following option, the value is the cache lifetime in minutes.

class Quote extends Model
{
    use Rememberable;

    public $rememberCacheTag = 'quote_queries';
    public $rememberFor = 60; // 1 hour
}
Enter fullscreen mode Exit fullscreen mode

So, that's it already. Your app should now cache all queries.

Be careful with model relations

One big thing that lead to some headaches for me: model relations. If Model A has a relation to Model B it is very likely to experience problems with query caches while working with these relations. To be save, clear the caches for both models if one updates.


This post appeared first on Blog.Kovah.de

Top comments (1)

Collapse
 
azazqadir profile image
Muhammad Azaz Qadir

To optimize database performance in Laravel, you can also enable Database cache or use Memcached in Laravel. To enable database cache, you will have to setup a table with schema decleration. To enable memcached, you will have to edit .env file and add memcached as the file type.