| 1 | <?php |
||
| 7 | class QueryCache{ |
||
| 8 | protected static $cache; |
||
| 9 | protected static $config; |
||
| 10 | public static $active; |
||
| 11 | |||
| 12 | protected static function getKey($query){ |
||
| 15 | |||
| 16 | public static function start(&$config){ |
||
| 22 | |||
| 23 | public static function store($query,$result){ |
||
| 26 | |||
| 27 | public static function fetch($query){ |
||
| 33 | |||
| 34 | public function clear(){ |
||
| 37 | |||
| 38 | public function remove($query){ |
||
| 43 | |||
| 44 | public static function setActive($value=true){ |
||
| 47 | } |