• unstable sort


    $sort (aggregation) — MongoDB Manual https://docs.mongodb.com/manual/reference/operator/aggregation/sort/

    Definition

    $sort

    Sorts all input documents and returns them to the pipeline in sorted order.

    The $sort stage has the following prototype form:

    copy
    copied
    { $sort: { <field1>: <sort order>, <field2>: <sort order> ... } }
    

    $sort takes a document that specifies the field(s) to sort by and the respective sort order. <sort order> can have one of the following values:

    ValueDescription
    1 Sort ascending.
    -1 Sort descending.
    { $meta: "textScore" } Sort by the computed textScore metadata in descending order. See Text Score Metadata Sort for an example.

    If sorting on multiple fields, sort order is evaluated from left to right. For example, in the form above, documents are first sorted by <field1>. Then documents with the same <field1> values are further sorted by <field2>.

    Behavior

    Sort Stability

    In MongoDB, sorts are inherently stable, unless sorting on a field which contains duplicate values:

    • stable sort is one that returns the same sort order each time it is performed
    • an unstable sort is one that may return a different sort order when performed multiple times

    If a stable sort is desired, include at least one field in your sort that contains exclusively unique values. The easiest way to guarantee this is to include the _id field in your sort query.

    Consider the following restaurant collection:

    copy
    copied
    db.restaurants.insertMany( [
       { "_id" : 1, "name" : "Central Park Cafe", "borough" : "Manhattan"},
       { "_id" : 2, "name" : "Rock A Feller Bar and Grill", "borough" : "Queens"},
       { "_id" : 3, "name" : "Empire State Pub", "borough" : "Brooklyn"},
       { "_id" : 4, "name" : "Stan's Pizzaria", "borough" : "Manhattan"},
       { "_id" : 5, "name" : "Jane's Deli", "borough" : "Brooklyn"},
    ] );
    

    The following command uses the $sort stage to sort on the borough field:

    copy
    copied
    db.restaurants.aggregate(
       [
         { $sort : { borough : 1 } }
       ]
    )
    

    In this example, the sort is unstable, since the borough field contains duplicate values for both Manhattan and Brooklyn. Documents are returned in alphabetical order by borough, but the order of those documents with duplicate values for borough might not the be the same across multiple executions of the same sort. For example, here are the results from two different executions of the above command:

     
    { "_id" : 3, "name" : "Empire State Pub", "borough" : "Brooklyn" }
    { "_id" : 5, "name" : "Jane's Deli", "borough" : "Brooklyn" }
    { "_id" : 1, "name" : "Central Park Cafe", "borough" : "Manhattan" }
    { "_id" : 4, "name" : "Stan's Pizzaria", "borough" : "Manhattan" }
    { "_id" : 2, "name" : "Rock A Feller Bar and Grill", "borough" : "Queens" }
    
    { "_id" : 5, "name" : "Jane's Deli", "borough" : "Brooklyn" }
    { "_id" : 3, "name" : "Empire State Pub", "borough" : "Brooklyn" }
    { "_id" : 4, "name" : "Stan's Pizzaria", "borough" : "Manhattan" }
    { "_id" : 1, "name" : "Central Park Cafe", "borough" : "Manhattan" }
    { "_id" : 2, "name" : "Rock A Feller Bar and Grill", "borough" : "Queens" }
    

    While the values for borough are still sorted in alphabetical order, the order of the documents containing duplicate values for borough (i.e. Manhattan and Brooklyn) is not the same.

    To achieve a stable sort, add a field which contains exclusively unique values to the sort. The following command uses the $sort stage to sort on both the borough field and the _id field:

    copy
    copied
    db.restaurants.aggregate(
       [
         { $sort : { borough : 1, _id: 1 } }
       ]
    )
    

    Since the _id field is always guaranteed to contain exclusively unique values, the returned sort order will always be the same across multiple executions of the same sort.

    Definition

    $sort

    Sorts all input documents and returns them to the pipeline in sorted order.

    The $sort stage has the following prototype form:

    copy
    copied
    { $sort: { <field1>: <sort order>, <field2>: <sort order> ... } }
    

    $sort takes a document that specifies the field(s) to sort by and the respective sort order. <sort order> can have one of the following values:

    ValueDescription
    1 Sort ascending.
    -1 Sort descending.
    { $meta: "textScore" } Sort by the computed textScore metadata in descending order. See Text Score Metadata Sort for an example.

    If sorting on multiple fields, sort order is evaluated from left to right. For example, in the form above, documents are first sorted by <field1>. Then documents with the same <field1> values are further sorted by <field2>.

    Behavior

    Sort Stability

    In MongoDB, sorts are inherently stable, unless sorting on a field which contains duplicate values:

    • stable sort is one that returns the same sort order each time it is performed
    • an unstable sort is one that may return a different sort order when performed multiple times

    If a stable sort is desired, include at least one field in your sort that contains exclusively unique values. The easiest way to guarantee this is to include the _id field in your sort query.

    Consider the following restaurant collection:

    copy
    copied
    db.restaurants.insertMany( [
       { "_id" : 1, "name" : "Central Park Cafe", "borough" : "Manhattan"},
       { "_id" : 2, "name" : "Rock A Feller Bar and Grill", "borough" : "Queens"},
       { "_id" : 3, "name" : "Empire State Pub", "borough" : "Brooklyn"},
       { "_id" : 4, "name" : "Stan's Pizzaria", "borough" : "Manhattan"},
       { "_id" : 5, "name" : "Jane's Deli", "borough" : "Brooklyn"},
    ] );
    

    The following command uses the $sort stage to sort on the borough field:

    copy
    copied
    db.restaurants.aggregate(
       [
         { $sort : { borough : 1 } }
       ]
    )
    

    In this example, the sort is unstable, since the borough field contains duplicate values for both Manhattan and Brooklyn. Documents are returned in alphabetical order by borough, but the order of those documents with duplicate values for borough might not the be the same across multiple executions of the same sort. For example, here are the results from two different executions of the above command:

     
    { "_id" : 3, "name" : "Empire State Pub", "borough" : "Brooklyn" }
    { "_id" : 5, "name" : "Jane's Deli", "borough" : "Brooklyn" }
    { "_id" : 1, "name" : "Central Park Cafe", "borough" : "Manhattan" }
    { "_id" : 4, "name" : "Stan's Pizzaria", "borough" : "Manhattan" }
    { "_id" : 2, "name" : "Rock A Feller Bar and Grill", "borough" : "Queens" }
    
    { "_id" : 5, "name" : "Jane's Deli", "borough" : "Brooklyn" }
    { "_id" : 3, "name" : "Empire State Pub", "borough" : "Brooklyn" }
    { "_id" : 4, "name" : "Stan's Pizzaria", "borough" : "Manhattan" }
    { "_id" : 1, "name" : "Central Park Cafe", "borough" : "Manhattan" }
    { "_id" : 2, "name" : "Rock A Feller Bar and Grill", "borough" : "Queens" }
    

    While the values for borough are still sorted in alphabetical order, the order of the documents containing duplicate values for borough (i.e. Manhattan and Brooklyn) is not the same.

    To achieve a stable sort, add a field which contains exclusively unique values to the sort. The following command uses the $sort stage to sort on both the borough field and the _id field:

    copy
    copied
    db.restaurants.aggregate(
       [
         { $sort : { borough : 1, _id: 1 } }
       ]
    )
    

    Since the _id field is always guaranteed to contain exclusively unique values, the returned sort order will always be the same across multiple executions of the same sort.

  • 相关阅读:
    软件工程小组问世第八章之测试文档
    软件工程小组问世第六章之概要设计白银篇
    软件工程小组问世第六章之概要设计青铜篇
    小组会谈(2019.5.15)
    小组会谈(2019.4.19)
    小组会谈(2019.4.12)
    小组会谈(2019.4.30)
    软件工程小组问世第五章之需求规格说明书白银篇
    HanLP封装为web services服务的过程介绍
    hanlp分词工具应用案例:商品图自动推荐功能的应用
  • 原文地址:https://www.cnblogs.com/rsapaper/p/14243940.html
Copyright © 2020-2023  润新知