sql >> Database >  >> NoSQL >> MongoDB

Gelijktijdige telling met behulp van Mongo-aggregatieframework

De aggregatie is vrij lang, maar het werkt. Het idee is dat je paren moet bouwen (x,y) op basis van uw client_interactions reeks. Het kan worden gedaan met behulp van $reduce en $map . Dan moet je $unwind uitvoeren en een paar $group stappen om uw geaggregeerde gegevens te "winden". Je hebt ook $arrayToObject nodig om uw sleutels dynamisch te bouwen.

db.collection.aggregate([
    {
        $addFields: {
            "client_interactions": {
                $filter: { input: "$client_interactions", cond: { $eq: [ "$$this.productType", "A" ] } }
            }
        }
    },
    {
        $project: {
            a: {
                $reduce: {
                    input: "$client_interactions",
                    initialValue: [],
                    in: {
                        $concatArrays: [
                            "$$value",
                            { $map: { input: "$client_interactions", as: "c",  in: { x: "$$this.productId", y: "$$c.productId" } } }
                        ]
                    }
                }
            }
        }
    },
    {
        $unwind: "$a"
    },
    {
        $match: {
            $expr: {
                $ne: [ "$a.x", "$a.y" ]
            }
        }
    },
    {
        $sort: {
            "a.x": 1,
            "a.y": 1
        }
    },
    {
        $group: {
            _id: "$a",
            count: { $sum: 1 }
        }
    },
    {
        $group: {
            _id: "$_id.x",
            arr: { $push: { k: "$_id.y", v: "$count" } }
        }
    },
    {
        $group: {
            _id: null,
            "co-ocurrences-count": { $push: { k: "$_id", v: { $arrayToObject: "$arr" } } }
        }
    },
    {
        $project: {
            _id: 0,
            "co-ocurrences-count": { $arrayToObject: "$co-ocurrences-count" }
        }
    }
])

Mongo-speeltuin




  1. Browser Reload:gaat niet terug naar de geselecteerde pagina, gaat naar de standaard startpagina - ReactJs

  2. Ondersteunt azure zaken als mongodb en redis?

  3. MongoDB-CR-verificatie als standaard configureren op MongoDB 3.x

  4. Een veld met typenummer verlagen in mongodb en nodejs