[nodejs] Creating a stateful server using node.js

2012-11-01 Thread Arindam Mukherjee
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

Re: [nodejs] Creating a stateful server using node.js

2012-11-01 Thread Dan Milon
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