laravel-eloquent-query-cache
laravel-eloquent-query-cache copied to clipboard
Adding cache on your Laravel Eloquent queries' results is now a breeze.
Bumps [actions/cache](https://github.com/actions/cache) from 3.0.5 to 3.0.6. Release notes Sourced from actions/cache's releases. v3.0.6 What's Changed Add example for clojure lein project dependencies by @shivamarora1 in PR actions/cache#835 Update toolkit's cache...
- Replace `newBaseQueryBuilder` with another method to not interfere with the default query builder creator - - The method should have caching enabled by default
Hi, I'm using your library to cache entities with Eloquent and I also read [this](https://leqc.renoki.org/cache-tags/cache-invalidation/many-to-many-automatic-cache-invalidation) in order to invalidate cache also with ManyToMany relationships, using pivot tables. I installed `chelout/laravel-relationship-events`...
Please let me know if I am doing anything wrong. To reproduce the situation: - Model: `App\Models\User.php` ```php
Updates the requirements on [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit) to permit the latest version. Changelog Sourced from phpunit/phpunit's changelog. [9.5.24] - 2022-08-30 Added #4931: Support null and false as stand-alone types #4955: Support true...
Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 3.1.1 to 4.0.1. Release notes Sourced from codecov/codecov-action's releases. v4.0.1 What's Changed Update README.md by @thomasrockhu-codecov in codecov/codecov-action#1243 Add all args by @thomasrockhu-codecov in codecov/codecov-action#1245 fix: show...
The cause of this bug (issues #97) : `QueryCacheable:` ``` public function getCacheTagsToInvalidateOnUpdate($relation = null, $pivotedModels = null): array { return $this->getCacheBaseTags(); } ``` Example: ``` User::cacheTags(['user:29'])->find(29); $userId = 28;...
Bumps [actions/cache](https://github.com/actions/cache) from 3.0.11 to 4.0.0. Release notes Sourced from actions/cache's releases. v4.0.0 What's Changed Update action to node20 by @takost in actions/cache#1284 feat: save-always flag by @to-s in actions/cache#1242...
Upgrade composer to support laravel 11
I want to append cache tags depending on the query result. For example I want to get a list of records and append the ids as tags to it so...