-
Notifications
You must be signed in to change notification settings - Fork 5
Cache
For my package, I used this repository
This Eloquent trait for Laravel that adds remember()
query methods. This makes it super easy to cache your query results for an adjustable amount of time.
// Get a the invoices and remember them for a day.
Invoice::withSum('items:price')->remember(now()->addDay())->get();
// You can also pass the number of seconds if you like
// (before Laravel 5.8 this will be interpreted as minutes).
Invoice::withSum('items:price')->remember(60 * 60 * 24)->get();
It works by simply remembering the SQL query that was used and storing the result. If the same query is attempted while the cache is persisted it will be retrieved from the store instead of hitting your database again.
Using the remember method is super simple. Just pass the number of seconds you want to store the result of that query in the cache for, and whenever the same query is called within that time frame the result will be pulled from the cache, rather than from the database again.
// Remember the number of invoices for an hour.
$invoices = Invoice::withSum('items:price')->remember(60 * 60)->count();
If you want to tag certain queries you can add cacheTags('tag_name')
to your query. Please notice that cache tags are not supported by all cache drivers.
// Remember the number of invoices for an hour and tag it with 'invoice_queries'
Invoice::withSum('items:price')->remember(60 * 60)->cacheTags('invoice_queries')->count();
If you want a unique prefix added to the cache key for each of your queries (say, if your cache doesn't support tagging), you can add prefix('prefix')
to your query.
// Remember the number of invoices for an hour and prefix the key with 'invoices'
Invoice::withSum('items:price')->remember(60 * 60)->prefix('invoices')->count();
Alternatively, you can add the $rememberCachePrefix
property to your model to always use that cache prefix.
If you want to use a custom cache driver (defined in config/cache.php) you can add cacheDriver('cacheDriver')
to your query.
// Remember the number of invoices for an hour using redis as cache driver
Invoice::withSum('items:price')->remember(60 * 60)->cacheDriver('redis')->count();
Alternatively, you can add the $rememberCacheDriver
property to your model to always use that cache driver.
You can set a cache tag for all queries of a model by setting the $rememberCacheTag
property with an unique string that should be used to tag the queries.
Validating works by caching queries on a query-by-query basis. This means that when you perform eager-loading those additional queries will not be cached as well unless explicitly specified. You can do that by using a callback with your eager-loads.
$invoices = Invoice::with(['items' => function ($q) {
$q->remember(60 * 60);
}])->remember(60 * 60)->get();
You can opt-in to cache all queries of a model by setting the $rememberFor
property with the number of seconds you want to cache results for. Use this feature with caution as it could lead to unexpected behaviour and stale data in your app if you're not familiar with how it works.
Based on the architecture of the package it's not possible to delete the cache for a single query. But if you tagged any queries using cache tags, you are able to flush the cache for the tag:
Invoice::flushCache('user_queries');
If you used the $rememberCacheTag
property you can use the method without a parameter and the caches for the tag set by $rememberCacheTag
are flushed:
Invoice::flushCache();
If you need to disable cache for a particular query, you can use the dontRemember
method:
Invoice::latest()->dontRemember()->get();