sql >> Database teknologi >  >> NoSQL >> MongoDB

Brug af $slice med $regex sammen på subDocument array i mongodb

Du kan bruge en kombination af $unwind og $match med mongo aggregation for at få forventet output som:

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"
    }
    }
})

Hvis du vil anvende spring over og grænse til ovenstående forespørgsel, så kan du nemt bruge det som:

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"
    }
    }
})

REDIGER :

Hvis du bruger php-version mindre end 5.4, vil forespørgslen være som:

$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);

Hvis du bruger PHP version større end 5.3, skal du bare erstatte { og } klammeparenteser med [ og ] hhv.




  1. Umuligt at få ejendom fra mangustobjekt

  2. hvordan man bruger $project return nest array efter $lookup i mongodb

  3. Understøtter Spring Data Redis (1.3.2.RELEASE) JedisSentinelPool of jedis?

  4. Deaktiver stop ordfiltrering i en MongoDB-tekstsøgning