我编写了一个获取API,它从mongodb集合中获取所有数据,将其转换为数组并返回它。但由于数据量很大,因此需要一些时间来获取数据和发送数据。我怎样才能加快操作? 请在下面找到代码,
collection.find().toArray(function(err, data){
if(err){
console.log("unable to fetch data from collection",err);
res.status(201).json({error : 'Unable to fetch data'});
}
else{
console.log("data send");
res.status(200).send(data);
}
})