Networking\InitCmsBundle\Lib\PhpCache::set PHP Method

set() public method

public set ( $keyword, string $value = "", integer $time = null, array $option = [] ) : array | boolean | string
$keyword
$value string
$time integer
$option array
return array | boolean | string
    public function set($keyword, $value = "", $time = null, $option = array())
    {
        if (is_null($time)) {
            $time = $this->cacheTime;
        }
        return $this->phpFastCache->instance->set($keyword, $value, $time, $option);
    }