Does MongoDB's $in clause guarantee order

后端 未结 10 1250
春和景丽
春和景丽 2020-11-22 01:39

When using MongoDB\'s $in clause, does the order of the returned documents always correspond to the order of the array argument?

相关标签:
10条回答
  • 2020-11-22 02:19

    You can guarantee order with $or clause.

    So use $or: [ _ids.map(_id => ({_id}))] instead.

    0 讨论(0)
  • 2020-11-22 02:23

    As noted, the order of the arguments in the array of an $in clause does not reflect the order of how the documents are retrieved. That of course will be the natural order or by the selected index order as shown.

    If you need to preserve this order, then you basically have two options.

    So let's say that you were matching on the values of _id in your documents with an array that is going to be passed in to the $in as [ 4, 2, 8 ].

    Approach using Aggregate


    var list = [ 4, 2, 8 ];
    
    db.collection.aggregate([
    
        // Match the selected documents by "_id"
        { "$match": {
            "_id": { "$in": [ 4, 2, 8 ] },
        },
    
        // Project a "weight" to each document
        { "$project": {
            "weight": { "$cond": [
                { "$eq": [ "$_id", 4  ] },
                1,
                { "$cond": [
                    { "$eq": [ "$_id", 2 ] },
                    2,
                    3
                ]}
            ]}
        }},
    
        // Sort the results
        { "$sort": { "weight": 1 } }
    
    ])
    

    So that would be the expanded form. What basically happens here is that just as the array of values is passed to $in you also construct a "nested" $cond statement to test the values and assign an appropriate weight. As that "weight" value reflects the order of the elements in the array, you can then pass that value to a sort stage in order to get your results in the required order.

    Of course you actually "build" the pipeline statement in code, much like this:

    var list = [ 4, 2, 8 ];
    
    var stack = [];
    
    for (var i = list.length - 1; i > 0; i--) {
    
        var rec = {
            "$cond": [
                { "$eq": [ "$_id", list[i-1] ] },
                i
            ]
        };
    
        if ( stack.length == 0 ) {
            rec["$cond"].push( i+1 );
        } else {
            var lval = stack.pop();
            rec["$cond"].push( lval );
        }
    
        stack.push( rec );
    
    }
    
    var pipeline = [
        { "$match": { "_id": { "$in": list } }},
        { "$project": { "weight": stack[0] }},
        { "$sort": { "weight": 1 } }
    ];
    
    db.collection.aggregate( pipeline );
    

    Approach using mapReduce


    Of course if that all seems to hefty for your sensibilities then you can do the same thing using mapReduce, which looks simpler but will likely run somewhat slower.

    var list = [ 4, 2, 8 ];
    
    db.collection.mapReduce(
        function () {
            var order = inputs.indexOf(this._id);
            emit( order, { doc: this } );
        },
        function() {},
        { 
            "out": { "inline": 1 },
            "query": { "_id": { "$in": list } },
            "scope": { "inputs": list } ,
            "finalize": function (key, value) {
                return value.doc;
            }
        }
    )
    

    And that basically relies on the emitted "key" values being in the "index order" of how they occur in the input array.


    So those essentially are your ways of maintaining the order of a an input list to an $in condition where you already have that list in a determined order.

    0 讨论(0)
  • 2020-11-22 02:23

    If you don't want to use aggregate, another solution is to use find and then sort the doc results client-side using array#sort:

    If the $in values are primitive types like numbers you can use an approach like:

    var ids = [4, 2, 8, 1, 9, 3, 5, 6];
    MyModel.find({ _id: { $in: ids } }).exec(function(err, docs) {
        docs.sort(function(a, b) {
            // Sort docs by the order of their _id values in ids.
            return ids.indexOf(a._id) - ids.indexOf(b._id);
        });
    });
    

    If the $in values are non-primitive types like ObjectIds, another approach is required as indexOf compares by reference in that case.

    If you're using Node.js 4.x+, you can use Array#findIndex and ObjectID#equals to handle this by changing the sort function to:

    docs.sort((a, b) => ids.findIndex(id => a._id.equals(id)) - 
                        ids.findIndex(id => b._id.equals(id)));
    

    Or with any Node.js version, with underscore/lodash's findIndex:

    docs.sort(function (a, b) {
        return _.findIndex(ids, function (id) { return a._id.equals(id); }) -
               _.findIndex(ids, function (id) { return b._id.equals(id); });
    });
    
    0 讨论(0)
  • 2020-11-22 02:25

    Similar to JonnyHK's solution, you can reorder the documents returned from find in your client (if your client is in JavaScript) with a combination of map and the Array.prototype.find function in EcmaScript 2015:

    Collection.find({ _id: { $in: idArray } }).toArray(function(err, res) {
    
        var orderedResults = idArray.map(function(id) {
            return res.find(function(document) {
                return document._id.equals(id);
            });
        });
    
    });
    

    A couple of notes:

    • The above code is using the Mongo Node driver and not Mongoose
    • The idArray is an array of ObjectId
    • I haven't tested the performance of this method vs the sort, but if you need to manipulate each returned item (which is pretty common) you can do it in the map callback to simplify your code.
    0 讨论(0)
提交回复
热议问题