mihai-stancu / cache-bundle
Cache items with associated tagging information and subsequently fetch or delete items based on tags.
0.3.5
2019-08-23 08:55 UTC
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: 2026-02-23 23:39:44 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.