MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Abfrage nach einem ähnlichen Array in MongoDB

Danke an alle die versucht haben mir zu helfen. Ich weiß Ihre Hilfe zu schätzen.

Ich habe eine Lösung über die Aggregationspipeline gefunden.

var myArray = ['a', 'b', 'c'];

db.test.aggregate([
    {
        $unwind: '$chars',
    },
    {
        $match: { chars: { $in: myArray } },
    },
    {
        $group: {
            _id: '$_id',
            count: { $sum: 1 },
        },
    },
    {
        $project: {
            _id: 1,
            count: 1,
            score: { $divide: ['$count', myArray.length] },
        },
    },
    {
        $sort: { score: -1 },
    },
]);

Das gibt die Konsole zurück:

{ "_id" : ObjectId("586ebeacb2ec9fc7fef5ce31"), "count" : 3, "score" : 1 }
{ "_id" : ObjectId("586ebeb9b2ec9fc7fef5ce32"), "count" : 2, "score" : 0.6666666666666666 }
{ "_id" : ObjectId("586ebe89b2ec9fc7fef5ce2f"), "count" : 1, "score" : 0.3333333333333333 }

Hoffe, jemand findet das nützlich.