<slide>
<title>Indexing Options</title>

<blurb>
Basic, default weights:
</blurb>
<example inline="1">
$collection->createIndex( [ 'subject' => *'text'*, 'post' => *'text'* ] ),
</example>

<blurb>
Explicit weights:
</blurb>
<example inline="1">
$collection->createIndex(
    [ 'subject' => 'text', 'post' => 'text' ],
    [ *'weights' => [ 'subject' => 10 ]* ]
);
</example>

<blurb>
Wildcard field: text at any depth, default weights:
</blurb>
<example inline="1">
$collection->createIndex( [ *'$\*\*'* => 'text' ] ),
</example>

<blurb>
Wildcard: override default weights and explicit weights:
</blurb>
<example inline="1">
$collection->createIndex(
    [ '$\*\*' => 'text' ],
    [ *'weights' => [ '$\*\*' => 10, 'post' => 5 ]* ]
);
</example>
</slide>
