mongodb 中的Multikey Index Bounds解釋$elemMatch

來源:互聯網
上載者:User

標籤:

首先說一下 $elemMatch的用法:

{ _id: 1, results: [ 82, 85, 88 ] }

{ _id: 2, results: [ 75, 88, 89 ] }

$elemMatch是匹配document 中數組中至少有一個元素滿足$elemMatch中的所有條件,例如:

db.scores.find(   { results: { $elemMatch: { $gte: 80, $lt: 85 } } })

查詢結果為:

{ "_id" : 1, "results" : [ 82, 85, 88 ] }

結下來解釋一下(Multikey Index Bounds):
在一個查詢期間,索引的掃描範圍定義了部分索引為了搜尋,當多個(條件)predicates 超過一個索引存在時:mongodb 將試圖去合并這些(條件)predicates的邊界,要麼通過求交集的方法合并
要麼通過組合的方法,為了去產生一個比較小的掃描範圍。給定一個索引數組欄位,考慮到在一個查詢中,在一個數組中指定了多個(條件)predicates並且可以使用 Multikey Index。
if $elemMatch 中有多個(條件)predicates ,mongodb會合并 Multikey Index的邊界。因此,會有$elemMatch是匹配document 中數組中至少有一個元素滿足$elemMatch中的所有條件。

繼續上面的例子,逐個條件邊界的範圍:
大於等於80($gte:80)的邊界為[80,inf];
小於85($lt:85)的邊界為[-inf,85]。
由於使用了$elemMatch組織多個條件查詢,mongodb查詢的邊界為results:[[80,85)].









 

mongodb 中的Multikey Index Bounds解釋$elemMatch

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.