alex433 / laravel-eloquent-cache
Laravel's Eloquent models caching
Installs: 1 769
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- php: >=7.1
- illuminate/database: ~5.7.0|~5.8.0|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0
- illuminate/support: ~5.7.0|~5.8.0|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0
This package is auto-updated.
Last update: 2025-02-26 10:33:34 UTC
README
Laravel's Eloquent models caching
Installation
Install via composer :
composer require alex433/laravel-eloquent-cache
How it works
When Eloquent fetches models by primary key, the SQL query result are cached. Subsequently, when eloquent fetches a model by primary key, the cached result will be used. The cache entry will be flushed when you create, update, or delete a model instance.
Usage
Use the Cachable
trait in the models you want to cache.
<?php namespace App; use Illuminate\Database\Eloquent\Model; use Alex433\LaravelEloquentCache\Cachable; class Post extends Model { use Cachable; }
In next cases cache queries will be executed instead SQL queries. Also it do the trick for "belongs To" relations.
Post::find($id); // findOrFail(), findOrNew() Post::where('id', $id)->first(); // firstOrFail(), firstOrNew(), firstOrCreate(), firstOr() Post::whereId($id)->first(); Post::where('id', $id)->get();
You can optionally define the following properties to change default trait behavior.
<?php namespace App; use Illuminate\Notifications\Notifiable; use Illuminate\Foundation\Auth\User as Authenticatable; use Alex433\LaravelEloquentCache\Cachable; class User extends Authenticatable { use Notifiable, Cachable; /** * Cache TTL in seconds. Defaults indefinitely * * @var int $cacheTtl */ public $cacheTtl = 3600; /** * Cache store name. Defaults default cache connection * * @var string $cacheStore */ public $cacheStore = 'redis'; /** * Cache tags. Defaults no tags * * @var array $cacheTags */ public $cacheTags = ['users']; }
To invalidate the cache entry for a model instance, use forget
method.
User::find($id)->forget(); // or User::find($id)->forget()->refresh();
When cache tags is used, you can flush the cache for a model, use the flushCache
method.
User::flushCache(); // or User::find($id)->flushCache();