diff --git a/README.md b/README.md index 5185aa4..9e20b13 100644 --- a/README.md +++ b/README.md @@ -14,437 +14,17 @@ It adds caching functionalities directly on the Eloquent level, making use of ca ## 🤝 Supporting -Renoki Co. on GitHub aims on bringing a lot of open source projects and helpful projects to the world. Developing and maintaining projects everyday is a harsh work and tho, we love it. +Renoki Co. loves building open source (and helpful) projects on Github for any developer to have an easier job at building products. 📦 Developing and maintaining projects is a harsh job and tho, we love it. -If you are using your application in your day-to-day job, on presentation demos, hobby projects or even school projects, spread some kind words about our work or sponsor our work. Kind words will touch our chakras and vibe, while the sponsorships will keep the open source projects alive. +If you are using your application in your day-to-day job, on presentation demos, hobby projects, or even school projects, spread some kind words about our work or sponsor our work. -[![ko-fi](https://www.ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/R6R42U8CL) - -## 🚀 Installation - -Hop into your console and install the package via Composer: - -```bash -$ composer require rennokki/laravel-eloquent-query-cache -``` - -Each model you want cache on should use the `Rennokki\QueryCache\Traits\QueryCacheable` trait. - -```php -use Rennokki\QueryCache\Traits\QueryCacheable; - -class Podcast extends Model -{ - use QueryCacheable; - - ... -} -``` - -## 🙌 Usage - -The package has the ability to track the SQL used and use it as a key in the cache storage, -making the caching query-by-query a breeze. - -```php -use Rennokki\QueryCache\Traits\QueryCacheable; - -class Article extends Model -{ - use QueryCacheable; - - public $cacheFor = 3600; // cache time, in seconds - ... -} - -// SELECT * FROM articles ORDER BY created_at DESC LIMIT 1; -$latestArticle = Article::latest()->first(); - -// SELECT * FROM articles WHERE published = 1; -$publishedArticles = Article::wherePublished(true)->get(); -``` - -In the above example, both queries have different keys in the cache storage, thus it doesn't matter what query we handle. By default, caching is disabled unless you specify a value for `$cacheFor`. As long as `$cacheFor` is existent and is greater than `0`, all queries will be cached. - -It is also possible to enable caching for specific queries by not specifying `$cacheFor` and calling `cacheFor()` within your queries: - -```php -$postsCount = Post::cacheFor(60 * 60)->count(); - -// Using a DateTime instance like Carbon works perfectly fine! -$postsCount = Post::cacheFor(now()->addDays(1))->count(); -``` - -## Cache Tags & Cache Invalidation - -Some caching stores accept tags. This is really useful if you plan on tagging your cached queries and invalidate only some of the queries when needed. - -```php -$shelfOneBooks = Book::whereShelf(1) - ->cacheFor(60) - ->cacheTags(['shelf:1']) - ->get(); - -$shelfTwoBooks = Book::whereShelf(2) - ->cacheFor(60) - ->cacheTags(['shelf:2']) - ->get(); - -// After flushing the cache for shelf:1, the query of$shelfTwoBooks will still hit the cache if re-called again. -Book::flushQueryCache(['shelf:1']); - -// Flushing also works for both tags, invalidating them both, not just the one tagged with shelf:1 -Book::flushQueryCache(['shelf:1', 'shelf:2']); -``` - -Be careful tho - specifying cache tags does not change the behaviour of key storage. -For example, the following two queries, altough the use the same tag, they have different keys stored in the caching database. - -```php -$alice = Kid::whereName('Alice') - ->cacheFor(60) - ->cacheTags(['kids']) - ->first(); - -$bob = Kid::whereName('Bob') - ->cacheFor(60) - ->cacheTags(['kids']) - ->first(); -``` - -## Global Cache Invalidation - -To invalidate all the cache for a specific model, use the `flushQueryCache` method without passing the tags. - -The package automatically appends a list of tags, called **base tags** on each query coming from a model. It defaults to the full model class name. - -In case you want to change the base tags, you can do so in your model. - -```php -class Kid extends Model -{ - use QueryCacheable; - - /** - * Set the base cache tags that will be present - * on all queries. - * - * @return array - */ - protected function getCacheBaseTags(): array - { - return [ - 'custom_tag', - ]; - } -} - -// Automatically works with `custom_tag` -Kid::flushQueryCache(); -``` - -## Full Automatic Invalidation - -To speed up the scaffolding of invalidation within your app, you can specify the model to auto-flush the cache upon any time records gets created, updated or deleted. - -```php -class Page extends Model -{ - use QueryCacheable; - - /** - * Invalidate the cache automatically - * upon update in the database. - * - * @var bool - */ - protected static $flushCacheOnUpdate = true; -} -``` - -When you set up the `$flushCacheOnUpdate` variable, the package attaches an observer to your model, and any `created`, `updated`, `deleted`, `forceDeleted` or `restored` event will trigger the cache invalidation. - -> In order for auto-flush to work, you will need at least one **base tag**. Out-of-the-box, the model has a base tag set. In some cases, if you have overwritten the `getCacheBaseTags()` with an empty array, it might not work. - -## Partial Automatic Invalidation - -In some cases, you might not want to invalidate the whole cache of a specific model. Perhaps you got two queries that run individually and want to invalidate the cache only for one of them. - -To do this, overwrite your `getCacheTagsToInvalidateOnUpdate()` method in your model: - -```php -class Page extends Model -{ - use QueryCacheable; - - /** - * Invalidate the cache automatically - * upon update in the database. - * - * @var bool - */ - protected static $flushCacheOnUpdate = true; - - /** - * When invalidating automatically on update, you can specify - * which tags to invalidate. - * - * @return array - */ - public function getCacheTagsToInvalidateOnUpdate(): array - { - return [ - 'query1', - ]; - } -} - -$query1 = Page::cacheFor(60) - ->cacheTags(['query1']) - ->get(); - -$query2 = Page::cacheFor(60) - ->cacheTags(['query2']) - ->get(); - -// The $query1 gets invalidated -// but $query2 will still hit from cache if re-called. - -$page = Page::first(); - -$page->update([ - 'name' => 'Reddit', -]); -``` - -**Please keep in mind: Setting `$flushCacheOnUpdate` to `true` and not specifying individual tags to invalidate will lead to [Full Automatic Invalidation](#full-automatic-invalidation) since the default tags to invalidate are the base tags and you need at least one tag to invalidate.** - -**Not specifying a tag to invalidate fallbacks to the set of base tags, thus leading to Full Automatic Invalidation.** - -## Relationship Caching - -Relationships are just another queries. They can be intercepted and modified before the database is hit with the query. The following example needs the `Order` model (or the model associated with the `orders` relationship) to include the `QueryCacheable` trait. - -```php -$user = User::with(['orders' => function ($query) { - return $query - ->cacheFor(60 * 60) - ->cacheTags(['my:orders']); -}])->get(); +_Kind words will touch our chakras and vibe, while the sponsorships will keep the open-source projects alive._ -// This comes from the cache if existed. -$orders = $user->orders; -``` - -## Cache Keys - -The package automatically generate the keys needed to store the data in the cache store. However, prefixing them might be useful if the cache store is used by other applications and/or models and you want to manage the keys better to avoid collisions. - -```php -$bob = Kid::whereName('Bob') - ->cacheFor(60) - ->cachePrefix('kids_') - ->first(); -``` - -If no prefix is specified, the string `leqc` is going to be used. - -## Cache Drivers - -By default, the trait uses the default cache driver. If you want to **force** a specific one, you can do so by calling `cacheDriver()`: - -```php -$bob = Kid::whereName('Bob') - ->cacheFor(60) - ->cacheDriver('dynamodb') - ->first(); -``` - -## Disable caching - -If you enabled caching (either by model variable or by the `cacheFor` scope), you can also opt to disable it within your query builder chains: - -```php -$uncachedBooks = Book::dontCache()->get(); -$uncachedBooks = Book::doNotCache()->get(); // same thing -``` - -## Equivalent Methods and Variables - -You can use the methods provided in this documentation query-by-query, or you can set defaults for each one in the model; using the methods query-by-query will overwrite the defaults. -While settings defaults is not mandatory (excepting for `$cacheFor` that will enable caching on **all** queries), it can be useful to avoid using the chained methods on each query. - -```php -class Book extends Model -{ - public $cacheFor = 3600; // equivalent of ->cacheFor(3600) - - public $cacheTags = ['books']; // equivalent of ->cacheTags(['books']) - - public $cachePrefix = 'books_' // equivalent of ->cachePrefix('books_'); - - public $cacheDriver = 'dynamodb'; // equivalent of ->cacheDriver('dynamodb'); -} -``` - -## Advanced - -### Implement the caching method to your own Builder class - -Since this package modifies the `newBaseQueryBuilder()` in the model, having multiple traits that -modify this function will lead to an overlap. - -This can happen in case you are creating your own Builder class for another database drivers or simply to ease out your app query builder for more flexibility. - -To solve this, all you have to do is to add the `\Rennokki\QueryCache\Traits\QueryCacheModule` trait and the `\Rennokki\QueryCache\Contracts\QueryCacheModuleInterface` interface to your `Builder` class. Make sure that the model will no longer use the original `QueryCacheable` trait. - -```php -use Rennokki\QueryCache\Traits\QueryCacheModule; -use Illuminate\Database\Query\Builder as BaseBuilder; // the base laravel builder -use Rennokki\QueryCache\Contracts\QueryCacheModuleInterface; - -// MyCustomBuilder.php -class MyCustomBuilder implements QueryCacheModuleInterface -{ - use QueryCacheModule; - - // the rest of the logic here. -} - -// MyBuilderTrait.php -trait MyBuilderTrait -{ - protected function newBaseQueryBuilder() - { - return new MyCustomBuilder( - // - ); - } -} - -// app/CustomModel.php -class CustomModel extends Model -{ - use MyBuilderTrait; -} - -CustomModel::cacheFor(30)->customGetMethod(); -``` - -### Generating your own key - -This is how the default key generation function looks like: - -```php -public function generatePlainCacheKey(string $method = 'get', string $id = null, string $appends = null): string -{ - $name = $this->connection->getName(); - - // Count has no Sql, that's why it can't be used ->toSql() - if ($method === 'count') { - return $name.$method.$id.serialize($this->getBindings()).$appends; - } - - return $name.$method.$id.$this->toSql().serialize($this->getBindings()).$appends; -} -``` - -In some cases, like implementing your own Builder for MongoDB for example, you might not want to use the `toSql()` and use your own -method of generating per-sql key. You can do so by overwriting the `MyCustomBuilder` class `generatePlainCacheKey()` with your own one. - -It is, however, highly recommended to use the most of the variables provided by the function to avoid cache overlapping issues. - -```php -class MyCustomBuilder implements QueryCacheModuleInterface -{ - use QueryCacheModule; - - public function generatePlainCacheKey(string $method = 'get', string $id = null, string $appends = null): string - { - $name = $this->connection->getName(); - - // Using ->myCustomSqlString() instead of ->toSql() - return $name.$method.$id.$this->myCustomSqlString().serialize($this->getBindings()).$appends; - } -} -``` - -### Implementing cache for other functions than get() - -Since all of the Laravel Eloquent functions are based on it, the builder that comes with this package replaces only the `get()` one: - -```php -use Illuminate\Support\Arr; - -class Builder -{ - public function get($columns = ['*']) - { - if (! $this->shouldAvoidCache()) { - return $this->getFromQueryCache('get', Arr::wrap($columns)); - } - - return parent::get($columns); - } -} -``` - -In case that you want to cache your own methods from your custom builder or, for instance, your `count()` method doesn't rely on `get()`, you can replace it using this syntax: - -```php -class MyCustomBuilder -{ - public function count() - { - if (! $this->shouldAvoidCache()) { - return $this->getFromQueryCache('count'); - } - - return parent::count(); - } -} -``` - -In fact, you can also replace any eloquent method within your builder if you use `$this->shouldAvoidCache()` check and retrieve the cached data using `getFromQueryCache()` method, passing the method name as string, and, optionally, an array of columns that defaults to `['*']`. - -Notice that the `getFromQueryCache()` method accepts a method name and a `$columns` parameter. If your method doesn't implement the `$columns`, don't pass it. - -Note that some functions like `getQueryCacheCallback()` may come with an `$id` parameter. -The default behaviour of the package doesn't use it, since the query builder uses `->get()` by default that accepts only columns. - -However, if your builder replaces functions like `find()`, `$id` is needed and you will also have to replace the `getQueryCacheCallback()` like so: - -```php -use Illuminate\Support\Arr; - -class MyCustomBuilder -{ - public function getQueryCacheCallback(string $method = 'get', $columns = ['*'], string $id = null) - { - return function () use ($method, $columns, $id) { - $this->avoidCache = true; - - // the function for find() caching - // accepts different params - if ($method === 'find') { - return $this->find($id, $columns); - } - - return $this->{$method}($columns); - }; - } +[![ko-fi](https://www.ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/R6R42U8CL) - public function find($id, $columns = ['*']) - { - // implementing the same logic - if (! $this->shouldAvoidCache()) { - return $this->getFromQueryCache('find', Arr::wrap($columns), $id); - } +## 📃 Documentation - return parent::find($id, $columns); - } -} -``` +[The entire documentation is available on Gitbook 🌍](https://rennokki.gitbook.io/laravel-eloquent-query-cache/) ## 🐛 Testing diff --git a/src/Traits/QueryCacheable.php b/src/Traits/QueryCacheable.php index 9217392..b69b3eb 100644 --- a/src/Traits/QueryCacheable.php +++ b/src/Traits/QueryCacheable.php @@ -8,6 +8,9 @@ /** * @method static bool flushQueryCache(string[] $array = []) * @method static bool flushQueryCacheWithTag(string $string) + * @method static \Illuminate\Database\Query\Builder|static cacheForever() + * @method static \Illuminate\Database\Query\Builder|static dontCache() + * @method static \Illuminate\Database\Query\Builder|static doNotCache() */ trait QueryCacheable {