redis = $redis; $this->hash = $hash; } /** * {@inheritdoc} */ public function save($id, $data) { $this->redis->hset($this->hash, $id, serialize($data)); } /** * {@inheritdoc} */ public function get($id) { return unserialize($this->redis->hget($this->hash, $id)); } /** * {@inheritdoc} */ public function find(array $filters = array(), $max = 20, $offset = 0) { $results = array(); foreach ($this->redis->hgetall($this->hash) as $id => $data) { if ($data = unserialize($data)) { $meta = $data['__meta']; if ($this->filter($meta, $filters)) { $results[] = $meta; } } } return array_slice($results, $offset, $max); } /** * Filter the metadata for matches. */ protected function filter($meta, $filters) { foreach ($filters as $key => $value) { if (!isset($meta[$key]) || fnmatch($value, $meta[$key]) === false) { return false; } } return true; } /** * {@inheritdoc} */ public function clear() { $this->redis->del($this->hash); } }