$collection->createIndex( [ 'subject' => *'text'*, 'post' => *'text'* ] ),
$collection->createIndex(
[ 'subject' => 'text', 'post' => 'text' ],
[ *'weights' => [ 'subject' => 10 ]* ]
);
$collection->createIndex( [ *'$\*\*'* => 'text' ] ),
$collection->createIndex(
[ '$\*\*' => 'text' ],
[ *'weights' => [ '$\*\*' => 10, 'post' => 5 ]* ]
);