Hi,
I have a node.js web application where I need process some mongodb
records (something like 20k records).
For each record I will do some processing and then write it back to the
database.
My code looks like this (not valid code just the idea) :
db.mycol.find({}, function(err, records) {
for each record in records {
var fieldsToUpdate = {}
// here goes some check on record fields and this updates the
fieldsToUpdate map
db.mycol.update({
_id : record._id
},
{
$set : valuesToSet
}, function(err) {
});
}
});
The problem with this is it halts my server.
I know it is possible to use process.nextTick but I do not know how this
will apply here.
Danilo.
--
--
Job Board: http://jobs.nodejs.org/
Posting guidelines:
https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
You received this message because you are subscribed to the Google
Groups "nodejs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/nodejs?hl=en?hl=en
---
You received this message because you are subscribed to the Google Groups
"nodejs" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.