0

我正在研究网络分析。为了报告流量和用户信息,我想read the flat file at real-time,平面文件包含扩展日志格式的用户信息。

要求

Reading the flat files at real-time which means, reading the particular chunk of data from the file and listening to the file for update if it is updated (new line or data added in the file) read the updated data and serve it for reporting.

相似的

这种技术类似于unix 系统中的tail -f

已知

node.js 中的文件读取

有什么类似于这个要求的技术吗?

4

1 回答 1

1

有一个尾部模块,它在内部使用fs.watchFilefs.createReadStream

在启动时,您只需“丢弃”您不需要的每一行。总而言之,这可能是最简单的方法......

于 2013-06-12T07:32:08.093 回答