Spring Data MongoDBのコア集約抽象化は、名前が示すように、Aggregation
です。 。流暢なAPIを公開して、集計操作を使用してパイプラインを構築します。
バージョン1.6.0.M1以降、Aggregation
クラスには….withOptions(…)
があります メソッド
このように使用するには:
Aggregation aggregation = newAggregation(…) // build up pipeline in here
.withOptions(newAggregationOptions().allowDiskUse(true).build());