Releases: mikebronner/laravel-model-caching
Releases · mikebronner/laravel-model-caching
0.2.37
Added
- disabling of
->all()
method via config flag.
0.2.36
Added
- config setting to allow disabling of model-caching.
0.2.35
[0.2.35] - 21 Feb 2018
Fixed
- cache key generation for
find()
andfindOrFail()
.
Added
- caching for
paginate()
;
0.2.34
Added
- implementation tests using redis.
- additional tests for some edge case scenarios.
Fixed
- cache key prefix functionality.
Updated
- tests through refactoring and cleaning up.
0.2.33
Added
- unit test to make sure
Model::all()
returns a collection when only only
record is retrieved. - console command to flush entire model-cache.
0.2.32
Fixed
- hash collision logic to not run query twice if not needed.
0.2.31
Added
- optional cache key prefixing.
0.2.30
Changed
- detection of Cachable trait to use
class_uses()
instead of looking for
method.
0.2.29
Added
- hash collision detection and prevetion.
0.2.28
Changed
- disabling of cache from using session to use cache-key instead.