mihai-stancu / cache-bundle
Cache items with associated tagging information and subsequently fetch or delete items based on tags.
Installs: 7 579
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 1
Open Issues: 0
Requires
- php: >=7.0
- ext-redis: >=2.2
- mihai-stancu/container-type: ^0.1.5
Requires (Dev)
- phpunit/phpunit: ^7
This package is auto-updated.
Last update: 2025-03-23 21:28:54 UTC
README
A Cache system which allows cache items to be associated to tags. When saving a cache item you can also supply its associated tags.
Operations based on associated tags are:
findByTags($tags)
: the item must be associated with all specified tags;deleteByTags($tags)
: the item must be associated with all specified tags;
The implementation leverages the SET
data type provided by Redis
and the set intersection command.