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

PyMongo:Wie verwendet man Aggregate und speichert die Ergebnisse in einer anderen Sammlung?

Es folgt der funktionsfähige Code, der auf Pymongo-Version 3.6.1 und Python 3.6.4 getestet wurde

    import pymongo
    from pymongo import MongoClient
    client = MongoClient('127.0.0.1')  # mongodb running locally
    dbRead = client['test']            # using the test database in mongo
    # create the pipeline required 
    pipeline = [{"$match": {"$text": {"$search":"StackOverflow"}}},{"$out":"C_b"}]  # all attribute and operator need to quoted in pymongo
    dbRead.C_a.aggregate(pipeline)  #execution 
    print (dbRead.C_b.count()) ## verify count of the new collection