<slide>
<title>Write Concern</title>
<subtitle>%\MongoDB\Driver\WriteConcern%</subtitle>

<list>
	<bullet>Two nodes:<br/><example>$wc = new MongoDB\Driver\WriteConcern( 2 );</example></bullet>
	<bullet>Majority of nodes:<br/><example>$wc = new MongoDB\Driver\WriteConcern( MongoDB\Driver\WriteConcern::MAJORITY );</example></bullet>
	<bullet>With timeout:<br/><example>$wc = new MongoDB\Driver\WriteConcern( MongoDB\Driver\WriteConcern::MAJORITY, 10000 );</example></bullet>
</list>

<example><![CDATA[<?php
require 'vendor/autoload.php';
$con = new \MongoDB\Client('mongodb://localhost:27017');

$res = $con->db->collection->insertOne(
	[ '_id' => 1, 'x' => 1 ],
	[ 'writeConcern' => $wc ],
);
]]></example>
</slide>
