Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > f800694edefe91adea2624f711a41a2d > files > 9374

php-manual-en-5.5.7-1.mga4.noarch.rpm

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
 <head>
  <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  <title>Creating An Index</title>

 </head>
 <body><div class="manualnavbar" style="text-align: center;">
 <div class="prev" style="text-align: left; float: left;"><a href="mongo.tutorial.multi.query.html">Getting A Set of Documents With a Query</a></div>
 <div class="next" style="text-align: right; float: right;"><a href="mongo.readpreferences.html">Read Preferences</a></div>
 <div class="up"><a href="mongo.tutorial.html">Tutorial</a></div>
 <div class="home"><a href="index.html">PHP Manual</a></div>
</div><hr /><div id="mongo.tutorial.indexes" class="section">
   <h2 class="title">Creating An Index</h2>
   <p class="para">
    MongoDB supports indexes, and they are very easy to add on a collection. To
    create an index, you specify the field name and direction: ascending (1) or
    descending (-1). The following creates an ascending index on the &quot;i&quot; field:
   </p>
   <div class="example" id="mongo.tutorial.indexes-example">
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000">
<span style="color: #0000BB">&lt;?php<br />$connection&nbsp;</span><span style="color: #007700">=&nbsp;new&nbsp;</span><span style="color: #0000BB">MongoClient</span><span style="color: #007700">();<br /></span><span style="color: #0000BB">$collection&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">$connection</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">database</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">collectionName</span><span style="color: #007700">;<br /><br /></span><span style="color: #0000BB">$coll</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">ensureIndex</span><span style="color: #007700">(&nbsp;array(&nbsp;</span><span style="color: #DD0000">"i"&nbsp;</span><span style="color: #007700">=&gt;&nbsp;</span><span style="color: #0000BB">1&nbsp;</span><span style="color: #007700">)&nbsp;);&nbsp;&nbsp;</span><span style="color: #FF8000">//&nbsp;create&nbsp;index&nbsp;on&nbsp;"i"<br /></span><span style="color: #0000BB">$coll</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">ensureIndex</span><span style="color: #007700">(&nbsp;array(&nbsp;</span><span style="color: #DD0000">"i"&nbsp;</span><span style="color: #007700">=&gt;&nbsp;-</span><span style="color: #0000BB">1</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">"j"&nbsp;</span><span style="color: #007700">=&gt;&nbsp;</span><span style="color: #0000BB">1&nbsp;</span><span style="color: #007700">)&nbsp;);&nbsp;&nbsp;</span><span style="color: #FF8000">//&nbsp;index&nbsp;on&nbsp;"i"&nbsp;descending,&nbsp;"j"&nbsp;ascending<br /></span><span style="color: #0000BB">?&gt;</span>
</span>
</code></div>
    </div>

   </div>
   <p class="para">
    Indexing is critical for good read performance as your data grows.  If you
    are not familiar with indexing, check out the
     <span class="function"><a href="mongocollection.ensureindex.html" class="function">MongoCollection::ensureIndex()</a></span> documentation and the core
    <a href="http://docs.mongodb.org/manual/indexes/" class="link external">&raquo;&nbsp;MongoDB indexing documentation</a>.
   </p>
  </div><hr /><div class="manualnavbar" style="text-align: center;">
 <div class="prev" style="text-align: left; float: left;"><a href="mongo.tutorial.multi.query.html">Getting A Set of Documents With a Query</a></div>
 <div class="next" style="text-align: right; float: right;"><a href="mongo.readpreferences.html">Read Preferences</a></div>
 <div class="up"><a href="mongo.tutorial.html">Tutorial</a></div>
 <div class="home"><a href="index.html">PHP Manual</a></div>
</div></body></html>