Pop\Cache\Cache::save PHP Method

save() public method

Method to save a value to cache.
public save ( string $id, mixed $value ) : void
$id string
$value mixed
return void
    public function save($id, $value)
    {
        $this->adapter->save($id, $value, $this->lifetime);
    }