Pop\Cache\Cache::save PHP 메소드

save() 공개 메소드

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