Save the hash-till-pause in some sort of database that every process talks to.

On 02/13/2012 05:48 AM, Rong Shen wrote:
  You can not expect the next part of file will go to the same Node
process before when the file uploading working in resumable way.
That is the reason why h.update(data) does not work in this manner
(How could recovery a Hash object that worked before in another Node
process even in another server?).

On 2月12日, 下午10时33分, Ben Noordhuis<[email protected]>  wrote:
On Sun, Feb 12, 2012 at 08:28, Rong Shen<[email protected]>  wrote:
I'm working on a resumable file upload program with Node.js.
For the identity checking of the uploaded file, I'm looking for a MD5
Hash Algorithm that could work in a resumable way.
You mean the built-in createHash() function?

   var h = crypto.createHash('md5');
   h.update(data);
   h.update(moreData);
   h.update(yetMoreData);
   var d = h.digest();

--
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

Reply via email to