MongoDB
 sql >> Baza danych >  >> NoSQL >> MongoDB

Wykonaj MongoTemplate.aggregate bez pobierania wierszy

Użyj AggregationOption - skipOutput() . Nie zwróci wyniku w przypadku, gdy potok agregacji zawiera operację $out/$merge.

mongoTemplate.aggregate(aggregation.withOptions(newAggregationOptions().skipOutput().allowDiskUse(true).build()), "collectionNme", EntityClass.class);

Jeśli używasz MongoDriver bez frameworka.

MongoClient client = MongoClients.create("mongodb://localhost:27017");
 MongoDatabase database = client.getDatabase("my-collection");
 MongoCollection<Document> model = database.getCollection(collectionName);
 AggregateIterable<Document> aggregateResult = model.aggregate(bsonListOfAggregationPipeline);
 
 // instead iterating over call toCollection() to skipResult
 aggregateIterable.toCollection();

Referencje:



  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. Sterownik MongoDB c# — czy pole o nazwie Id not be Id?

  2. Zapytanie liczbowe Java Mongodb numberlong

  3. ClusterControl — wszystkie najważniejsze funkcje i ulepszenia z 2017 roku

  4. Unikalne ograniczenia MongoDb w zakresie dat

  5. Równoczesna aktualizacja MongoDB do tego samego dokumentu nie działa atomowo