timacdonald / cached-valuestore
An extension of spatie/valuestore with in-memory caching.
Installs: 698
Dependents: 0
Suggesters: 0
Security: 0
Stars: 12
Watchers: 3
Forks: 2
Open Issues: 2
Type:utility
Requires
- php: ^7.0 || ^8.0
- spatie/valuestore: ^1.0
Requires (Dev)
- phpunit/phpunit: ^9.3
This package is auto-updated.
Last update: 2024-11-07 19:18:51 UTC
README
This is an extension of spatie/valuestore
that introduces a local cache in the class. Thanks to Spatie for providing such a great package ecosystem. This is an under appreciated awesome package IMO.
Installation
You can install using composer from Packagist
$ composer require timacdonald/cached-valuestore
Usage
Please refer to the original package docs for general usage. The only new method is the ability to clear the cache - however this is done when persisting so you probably won't ever need it.
$valuestore->clearCache();
Thanksware
You are free to use this package, but I ask that you reach out to someone (not me) who has previously, or is currently, maintaining or contributing to an open source library you are using in your project and thank them for their work. Consider your entire tech stack: packages, frameworks, languages, databases, operating systems, frontend, backend, etc.
Upgrade v1 > v2
- The cache is now an instance variable rather than a static variable.
- Any calls to
Valuestore::clearCache();
need to be replaced with$valuestore->clearCache();
.