infinite lifeTime). * * @return boolean TRUE if the entry was successfully stored in the cache, FALSE otherwise. */ public function doSave($id, $data, $lifeTime = 0); /** * Deletes a cache entry. * * @param string $id The cache id. * * @return boolean TRUE if the cache entry was successfully deleted, FALSE otherwise. */ public function doDelete($id); /** * Flushes all cache entries from the cache. * * @return boolean */ public function doFlush(); }