1 | <?php |
||
7 | class MemcacheDriver implements CacheDriverInterface |
||
8 | { |
||
9 | /** |
||
10 | * @var \Memcache |
||
11 | */ |
||
12 | private $memcache; |
||
13 | |||
14 | /** |
||
15 | * @var int |
||
16 | */ |
||
17 | private $expire; |
||
18 | |||
19 | public function __construct($_options = []) |
||
29 | |||
30 | public function fetch($key) |
||
38 | |||
39 | public function remove($key) |
||
43 | |||
44 | public function store($key, $data, $expire = null) |
||
48 | } |
||
49 |