timacdonald/cached-valuestore

An extension of spatie/valuestore with in-memory caching.

v2.0.2 2022-02-23 21:34 UTC

This package is auto-updated.

Last update: 2024-03-24 02:01:26 UTC


README

Latest Stable Version Total Downloads License

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();.