The class Commercetools\Core\Cache\AbstractCacheAdapter has been deprecated with message: use a PSR-6 cache adapter instead. Will be removed with v2.0
This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the type will be
removed from the class and what other constant to use instead.
Loading history...
14
{
15
/**
16
* @param $key
17
* @param null $options
18
* @return bool|\string[]
19
*/
20
public function has($key, $options = null)
21
{
22
return apc_exists($key);
23
}
24
25
/**
26
* @param $key
27
* @param mixed $options
28
* @return mixed|false
29
*/
30
public function fetch($key, $options = null)
31
{
32
return apc_fetch($key);
33
}
34
35
/**
36
* @param $key
37
* @param $data
38
* @param $lifeTime
39
* @param $options
40
* @return bool
41
*/
42
public function store($key, $data, $lifeTime = null, $options = null)
This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.