1 | <?php |
||
5 | class ReflectionCacheApc implements ReflectionCache |
||
6 | { |
||
7 | private $localCache; |
||
8 | private $timeToLive = 5; |
||
9 | |||
10 | public function __construct(ReflectionCache $localCache = null) |
||
14 | |||
15 | public function setTimeToLive($seconds) |
||
22 | |||
23 | public function fetch($key) |
||
35 | |||
36 | public function store($key, $data) |
||
41 | } |
||
42 |