Dwight Watson's blog

Bringing the remember() method back to Laravel 5

This blog post was originally published a little while ago. Please consider that it may no longer be relevant or even accurate.

Laravel 4 had a great feature that unfortunately was removed from the latest version and that was the remember() method on the query builder. This made it stupidly simple to cache the results of your database queries to give your app that little extra performance boost. It may not have been the pinnacle of structured application development, and this might explain why it was eventually removed, but it was such a pleasure to just throw it on a query and be done with it. It's for that reason that I decided to bring it back to Laravel 5 in the form of a package.

Rememberable: query caching for Laravel 5

A quick composer require watson/rememberable and the use of a trait will bring the remember() method back to your Eloquent models. You're then able to pass the number of minutes you want to cache a query to the method and any subsequent calls to that query will be pulled from the cache rather than hitting the database again. It's super simple!

// Cache the number of users for a day.
$users = User::remember(1440)->count();

// Cache the most popular posts for an hour.
$posts = Post::popular()->remember(60)->get();

In the future I'll look to bring it back to the standard Laravel query build too (I had this functionality in an earlier commit if you're really keen, but it required using a service provider as well as a trait). I'd also like to have it cache the result of relationship queries too, for example when you call with() on an Eloquent query chain.

A blog about Laravel & Rails by Dwight Watson;

Picture of Dwight Watson

Follow me on Twitter, or GitHub.