[READ-ONLY] Easy to use Caching library with support for multiple caching backends. This repo is a …

Repo Url https://github.com/cakephp/cache
Clone Url:
Watchers 7
Issues 0
Forks 3
Last Pushed At 2016-04-25
Tags has:composer has:license has:readme keyword:cache keyword:caching license:mit version:4.x
Last fetched: on 1/3/20

Recent Activity

Date Commit Message
2025-08-31 Fix some spelling and broken code snippets. (#18791)
2025-08-31 Merge 5.x into 5.next
2025-08-31 Redis cluster improvements (#18828) * Simplify scan and encapsulate flushDB and support it in cluster mode as well * Use cluster if clusterName is set as well. * Add support for failover modes * Fix scan for cluster mode * Fix phpstan baseline * Test fixes * Only detect redis socket once for tests. Speeds up windows tests. Fix test * Only check cluster nodes once in redis cluster test as well. Fix closing of invalid socket * Fix phpcs error. * Support RedisCluster int constants for failover in addition to the strings * Use async flushDB on clear for consistency * Override has() to avoid fetching and unserializing values only to check if they exist. * Move the error messages for missing nodes from stdout to skipIf reason * Ensure exists returns an int before using it. phpcs fix. * Ensure we always pass a string to skipIf message * Fix error message * Added test for creating a redis cluster cache with named configuration * Fix test configuration * Set default nodes to null so that seeds from named configuration work * Restore node as empty array because null is not accepted even if the documentation says otherwise. * Error when using clusterName without nodes