XOOPS 2.5.6  Final
 All Classes Namespaces Files Functions Variables Pages
apc.php
Go to the documentation of this file.
1 <?php
20 defined('XOOPS_ROOT_PATH') or die('Restricted access');
21 
55 {
67  function init($settings = array())
68  {
69  parent::init($settings);
70  return function_exists('apc_cache_info');
71  }
72 
82  function write($key, &$value, $duration)
83  {
84  return apc_store($key, $value, $duration);
85  }
86 
94  function read($key)
95  {
96  return apc_fetch($key);
97  }
98 
106  function delete($key)
107  {
108  return apc_delete($key);
109  }
110 
117  function clear()
118  {
119  return apc_clear_cache('user');
120  }
121 }
122 
123 ?>