Imdb\CacheBase::set PHP Method

set() public method

public set ( $key, $value )
    public function set($key, $value)
    {
        if (!$this->config->storecache) {
            return false;
        }
        $cleanKey = $this->sanitiseKey($key);
        $this->setInternal($key, $cleanKey, $value);
        return true;
    }