axn/cached-valuestore

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

2.0.4 2023-02-19 14:59 UTC

This package is auto-updated.

Last update: 2024-04-19 17:34:10 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.

This is a fork of Cached Valuestore by Tim MacDonald until he finds time to update his. If he can find it between two awesomes features/improvement he brings to Laravel.

A very big thank you to him for all the work he does!

In order to facilitate the use of this fork we allowed ourselves to put our own vendor rather than having to indicate the location of the repository in the compser.json file. But we left the original namespace.

Installation

You can install using composer from Packagist

$ composer require axn/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();.