29   public function exists($section, $key);
 
   37   public function getDate($section, $key);
 
   45   public function get($section, $key);
 
   54   public function put($section, $key, $value, $lifetime=
null);
 
   62   public function clear($section);
 
  
Input/Output related interfaces and classes.
exists($section, $key)
Check if a cache entry exists.
put($section, $key, $value, $lifetime=null)
Store the value of the specified cache entry with an optional lifetime.
clearAll()
Clear all cache sections.
getDate($section, $key)
Get the date of the specified cache entry.
clear($section)
Clear the given cache section.
Cache defines the interface for cache implementations.