How to stream MongoDB Query Results with nodejs?

前端 未结 5 718
名媛妹妹
名媛妹妹 2020-12-23 14:33

I have been searching for an example of how I can stream the result of a MongoDB query to a nodejs client. All solutions I have found so far seem to read the query result at

5条回答
  •  暖寄归人
    2020-12-23 14:59

    Streaming in Mongoose became available in version 2.4.0 which appeared three months after you've posted this question:

    Model.where('created').gte(twoWeeksAgo).stream().pipe(writeStream);
    

    More elaborated examples can be found on their documentation page.

提交回复
热议问题