<slide>
<title>Sparse Indexes</title>

<blurb>Index on %admin1_code%:</blurb>
<image filename="mongo-compound-index-null.png"/>
<break/>

<blurb>A sparse index doesn't contain documents where the field-to-be-indexed is NULL:</blurb>
<div effect="fade-out">
<image filename="mongo-compound-index-sparse.png"/>
</div>

<div effect="fade-in">
<example inline="1">
db.cities.createIndex( { admin1_code: 1 }, *{ sparse: true }* );
</example>
<image filename="mongo-compound-index-sparse2.png"/>
</div>
</slide>
