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

Alternativ til Pymongo cursor iteration

En aggregeringsforespørgsel kan udføres for at indsamle alle forfattere og bøger. f.eks.

pipeline = [
    {
        '$group': { 
            '_id': None, 
            'authors': { '$push': '$author' }, 
            'books': { '$push': '$book' } 
        } 
    }
]

result = collection.aggregate(pipeline))

In [2]: print(result)
[{'_id': None, 'authors': ['John', 'Tony', 'John'], 'books': ['A', 'B', 'C']}]



  1. MongoDB $oid vs ObjectId

  2. Fjernelse af database.yml ved brug af Mongoid i Rails 3.2

  3. MongoDB $dateFromParts

  4. Redis Sentinels med TLS