Sounds like you need a database, not? Is there a particular reason you wont use a regular generic external database? You could even use embedded levelDB https://github.com/rvagg/node-levelup
danmilon. On 11/01/2012 12:02 PM, Arindam Mukherjee wrote: > I am trying to write a distributed monitoring and replication framework > for files using node.js. I want to keep track of the last modified time, > chksum, size, etc of files in a directory and bump up a version if > something changes. For this I need to be able to compare older stored > values of these (timestamp, size, md5sum, etc) with newly discovered > changed values. I am unable to figure out how to define the data > structures for this node.js and also how to update them without > concurrency issues due to, say, multiple callbacks trying to update the > data. > > Thanks, > Arindam > > -- > 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 -- 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
