5 use Doctrine\Common\Cache\Cache;
22 public function contains($id, array $options =
null)
24 return $this->cache->contains($id);
27 public function delete($id, array $options =
null)
29 return $this->cache->delete($id);
32 public function fetch($id, array $options =
null)
34 return $this->cache->fetch($id);
37 public function save($id, $data, $lifeTime =
false, array $options =
null)
39 return $this->cache->save($id, $data, $lifeTime !==
false ? $lifeTime : 0);