00001 <?php 00030 interface Zend_Cache_Backend_Interface 00031 { 00037 public function setDirectives($directives); 00038 00048 public function load($id, $doNotTestCacheValidity = false); 00049 00056 public function test($id); 00057 00070 public function save($data, $id, $tags = array(), $specificLifetime = false); 00071 00078 public function remove($id); 00079 00097 public function clean($mode = Zend_Cache::CLEANING_MODE_ALL, $tags = array()); 00098 00099 }