- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我的目标是通过 Mongoose 导入大量数据。作为新手,我无法通过异步的各种机制正确设置流量控制。很高兴有人能指出合适的解决方案。谢谢。
var async = require('async'),
mongoose = require('mongoose');
mongoose.connect('mongodb://localhost/test');
var Cat = mongoose.model('Cat', { name: String });
// Imagine this is a huge array with a million items.
var content = ['aaa', 'bbb', 'ccc'];
var queries = [];
content.forEach(function(name) {
queries.push(function(cb) {
var obj = new Cat({ name: name });
obj.save(function(err) {
console.log("SAVED: " + name);
console.log(err);
});
return true;
});
});
// FAILED: async.parallel adds all content to db,
// but it would exhaust the resource with too many parallel tasks.
async.parallel(queries, function(err, result) {
if (err)
return console.log(err);
console.log(result);
});
// FAILED: save the first item but not the rest
async.waterfall(queries, function(err, result) {
if (err)
return console.log(err);
console.log(result);
});
// FAILED: same as async.waterfall, async.queue saves the first item only
var q = async.queue(function(name, cb) {
var obj = new Cat({ name: name });
obj.save(function(err) {
console.log("SAVED: " + name);
console.log(err);
});
})
q.push(content, function (err) {
console.log('finished processing queue');
});
最佳答案
我认为eachLimit
或 eachSeries
最适合您的情况:
var content = ['aaa', 'bbb', 'ccc'];
async.eachLimit(content, 10, function(name, done) {
var obj = new Cat({ name : name });
obj.save(done);
// if you want to print some status info, use this instead:
//
// obj.save(function(err) {
// console.log("SAVED: " + name);
// console.log(err);
// done(err);
// });
//
}, function(err) {
// handle any errors;
});
使用 eachLimit
,您可以“并行”运行 X 数量的查询(在上面的示例中为 10 个)以在不耗尽资源的情况下加快速度。 eachSeries
将等待上一个保存,然后再继续下一个,因此一次有效地保存一个对象。
请注意,使用 each*
,您不会得到一个包含(保存的)对象的列表(这是一种您对结果不感兴趣的即发即弃机制,禁止任何错误)。如果你最终想要一个已保存对象的列表,你可以使用等效的 map*
函数:mapLimit
和 mapSeries
.
关于node.js - 具有异步队列和 waterfall 的 Mongoose ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19395433/
我正在使用异步 waterfall ,我有一个关于 try/catch 错误的问题。 我不想用一个全局 try/catch 来回避这种语法方法,并且不能通过函数重复 try/catch : async
Closed. This question does not meet Stack Overflow guidelines。它当前不接受答案。 想要改善这个问题吗?更新问题,以便将其作为on-topi
我正在阅读有关软件开发模型和生命周期的内容,在那里我了解了瀑布模型和统一流程。然而,这两个过程都涉及需求收集、设计阶段、开发测试和部署(统一过程中的初始、细化、构建和过渡阶段)。 任何人都可以帮助我解
假设我有一个具有异步方法的对象数组: [ { partOne: function(input) { // Do something async }, partT
我有一组必须按顺序执行的读取命令。任何失败,处理都会停止。 readCommands 是一个读取函数数组... async.waterfall(readCommands, function(err)
除了相对琐碎的功能之外,我倾向于害怕为任何东西编写 Javascript 的原因之一是我从来没有找到一种合适的方法来避免当一件事真正依赖于另一件事时的回调瀑布。有这样的方法吗? 我现在正在开发 Tit
这个问题在这里已经有了答案: How to structure nested Promises (3 个答案) 关闭 6 年前。 我是一名 API 开发人员,通常编写需要将结果从一个异步调用传递到另
我尝试使用 async.waterfall 来清理我的代码。我有两个问题,这是我的代码。 async.forEachOf(req.files, (value, key, callback) => {
这个问题已经有答案了: For-loop and async callback in node.js? (3 个回答) 已关闭 9 年前。 我有以下异步代码。 for fileName in so
我正在使用npm异步 waterfall 方法来编写功能。在那里我发现了一个奇怪的情况(可能是我的意识低)。我的功能如下。我在第一个函数中创建一个事件数组,并通过回调参数将其传递给第二个函数。然后我在
我正在尝试实现一个架构,其中客户拥有订单和发货历史记录。我正在尝试使用 API 调用将该数据导入到另一个系统,但问题是我无法使用单个 API 调用导入所有客户数据。我正在使用 Promise 创建 w
从下面的代码中我没有得到 result1 数据。这是未定义的。有人可以帮助我吗? async.waterfall([ function(callback) { request(
我第一次使用async.waterfall,但遇到了一些麻烦。 这是我尝试调用的两个函数: function generateImageURL(data, callback){ // ... x
如何创建像 Chrome Inspector、GTMetrix 这样的网站 waterfall/时间线? 我需要在网站打开时获取数据。加载整个网站时浏览器发出了多少请求。请求发生的地点等。 是否有任何
有两个调用的 waterfall 函数,但第二个调用没有等待第一个完全完成。第一个有一个 mongodb.find() 调用。这是异步 waterfall 函数 app.get("/news", fu
我正在尝试执行 waterfall 式异步,但没有得到我想要的预期输出。如果我使用数组而不是查询,基本上我的 waterfall 会按预期工作所以我想我在查询的回调中做错了什么,但我不知道是什么。 当
我正在尝试将数据返回到我的 View 模板。我正在使用 async.waterfall 来执行此操作。只有一个问题,类的结果总是undefined Controller : Profile().the
我正在使用 node.js 和异步包。 这是我的代码: async.waterfall( [ function(callback) { var data = getSomeDa
我正在实现一个用 Node.js 编写的项目,并从 Mysql 获取值。随着我在项目中的深入,我的嵌套回调是这样的 hold.getEntry(function(data){ var ref
我需要保存到异步 waterfall 系列内的数据库。 我尝试在 clean 函数之后集成这两个函数 function connectDb(next) {
我是一名优秀的程序员,十分优秀!