MatthiasMullie\Scrapbook\Buffered\BufferedStore::add PHP Method

add() public method

public add ( $key, $value, $expire )
    public function add($key, $value, $expire = 0)
    {
        $result = $this->transaction->add($key, $value, $expire);
        $this->transaction->commit();
        return $result;
    }