sql >> データベース >  >> NoSQL >> MongoDB

Spring-mongodb--aggregation-'cursor'オプションが必要です

    ドキュメントから。

    batchSizeを渡すことができます AggregationOptionsを使用 SpringMongo2.xバージョン

    Aggregation aggregation = newAggregation(unwind, group).withOptions(newAggregationOptions().cursorBatchSize(100).build());
    

    デフォルトのバッチサイズで

    Aggregation aggregation = newAggregation(unwind, group).withOptions(newAggregationOptions().cursor(new Document()).build());
    


    1. MongoDB:クエリに暗黙の制限(256)がありますか?

    2. マングース:骨材を使用して一緒に見つける方法

    3. Redisで参照セットを実装する

    4. ドキュメントデータベース:冗長データ、参照など(特にMongoDB)