cluster-file-writer
Advanced tools
Comparing version 0.0.8 to 0.0.9
{ | ||
"name": "cluster-file-writer", | ||
"version": "0.0.8", | ||
"version": "0.0.9", | ||
"description": "write to a single file from a cluster", | ||
"keywords": ["cluster", "logger", "filesystem", "file"], | ||
"main": "index.js", | ||
"main": "index.js", | ||
"author": { | ||
@@ -12,6 +12,6 @@ "name": "Yaniv Kessler" | ||
"type": "git", | ||
"url": "http://github.co/kessler-y/cluster-file-writer.git" | ||
}, | ||
"url": "http://github.co/kessler/cluster-file-writer.git" | ||
}, | ||
"bugs": { | ||
"url": "http://github.com/kessler-y/cluster-file-writer/issues" | ||
"url": "http://github.com/kessler/cluster-file-writer/issues" | ||
}, | ||
@@ -21,6 +21,6 @@ "licenses": [ | ||
"type": "MIT", | ||
"url": "https://raw.github.com/kessler-y/cluster-file-writer/master/LICENSE" | ||
"url": "https://raw.github.com/kessler/cluster-file-writer/master/LICENSE" | ||
} | ||
], | ||
"devDependencies": { | ||
"devDependencies": { | ||
"byline": "*" | ||
@@ -27,0 +27,0 @@ }, |
@@ -8,3 +8,3 @@ Cluster file writer | ||
Rhe second is backpressure from the underlying stream between each worker and master (Assuming the workers pump a lot of data to the master). Unfortunately there is no 'drain' event for communication channel used between the worker and the master (AFAIK it is not properly exposed), so this module tries its best to mimic it using timers. | ||
The second is backpressure from the underlying stream between each worker and master (Assuming the workers pump a lot of data to the master). Unfortunately there is no 'drain' event for communication channel used between the worker and the master (AFAIK it is not properly exposed), so this module tries its best to mimic it using timers. | ||
@@ -11,0 +11,0 @@ ###Install |
10855