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.
You can install using composer from Packagist
$ composer require timacdonald/cached-valuestore
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();
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.
- The cache is now an instance variable rather than a static variable.
- Any calls to
Valuestore::clearCache();
need to be replaced with$valuestore->clearCache();
.