5 use Zend\Cache\Storage\StorageInterface;
22 public function contains($id, array $options =
null)
24 return $this->cache->hasItem($id);
27 public function delete($id, array $options =
null)
29 return $this->cache->removeItem($id);
32 public function fetch($id, array $options =
null)
34 return $this->cache->getItem($id);
37 public function save($id, $data, $lifeTime =
false, array $options =
null)
39 return $this->cache->setItem($id, $data);