Metaphore\Store\FileStore::add PHP Method

add() public method

public add ( $key, $value, $ttl )
    public function add($key, $value, $ttl)
    {
        $fileName = $this->getFileName($key);
        if (file_exists($fileName)) {
            return false;
        }
        return $this->set($key, $value, $ttl);
    }