redis-cache-zend-framework
redis-cache-zend-framework copied to clipboard
🗄 Redis cache backend for Zend Framework with support for tags. Uses PHP module phpredis. [not actively maintained]
**Given** following deprecated function Redis::delete() and Redis::setTimeout() **Then** this project **MUST** be updated
is this project abandoned too ?
The default behaviour stays the same, a timeout of 0s means unlimited as specified on https://github.com/phpredis/phpredis#connect-open This simply allows the connection to fail a lot faster in case Redis is...
``` php public function save($data, $id, $tags = array(), $specificLifetime = false) { if (!$this->_redis) return false; $lifetime = $this->getLifetime($specificLifetime); if (!$tags || !count($tags)) $tags = array(''); if (is_string($tags)) $tags...
What is the reason for this?
I can see that you use tags in your examples, but are they actually working? I'm asking because the default Zend Memcache extension does know about tags, but doesn't know...