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

Verwendung von $slice mit $regex zusammen im subDocument-Array in Mongodb

Sie können eine Kombination aus $unwind verwenden und $match mit Mongo Aggregation um die erwartete Ausgabe zu erhalten wie:

db.collection.aggregate({
    $match: {
    "_id": "3691149613248"  // you can skip this condition if not required
    }
}, {
    $unwind: "$following"
}, {
    $match: {
    "following.content_id": {
        $regex: /^369/
    }
    }
}, {
    $group: {
    _id: "$_id",
    "following": {
        $push: "$following"
    }
    }
})

Wenn Sie überspringen möchten und limit Um die obige Abfrage durchzuführen, können Sie sie einfach wie folgt verwenden:

db.collection.aggregate({
    $match: {
    "_id": "3691149613248" //use this if you want to filter out by _id
    }
}, {
    $unwind: "$following"
}, {
    $match: {
    "following.content_id": {
        $regex: /^369/
    }
    }
}, {
    $skip: 4  // you can set offset here
}, {
    $limit: 3 // you can set limit here
}, {
    $group: {
    _id: "$_id",
    "following": {
        $push: "$following"
    }
    }
})

BEARBEITEN :

Wenn Sie eine PHP-Version kleiner als 5.4 verwenden, lautet die Abfrage wie folgt:

$search = "369";
$criteria = array(array("$match" => array("_id" => "3691149613248")),
    array("$unwind" => "$following"),
    array("$match" => array("following.content_id" => array("$regex" => new MongoRegex("/^$search/")))),
    array("$skip" => 4), array("$limit" => 3),
    array("$group" => array("_id" => "$_id", "following" => array("$push" => "$following"))));
$collection - > aggregate($criteria);

Wenn Sie eine höhere PHP-Version als 5.3 verwenden, ersetzen Sie einfach { und } geschweiften Klammern mit [ und ] bzw..