Releases: mikebronner/laravel-model-caching
Releases · mikebronner/laravel-model-caching
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.
0.2.27
Fixed
- the erroneous use of
arrayEmpty()
function, changed to simplecount()
.
0.2.26
Added
- refactor functionality to trait (thanks @rs-sliske!).