Ruby 中的扩展日志文件格式解析器
我正在寻找适用于 W3C 扩展日志文件格式的 ruby 解析器。
http://www.w3.org/TR/WD-logfile.html
理想情况下,它会根据日志文件中的字段生成一个多维数组。我正在考虑类似于 FasterCSV (http://fastercsv.rubyforge.org/) 处理 CSV 的方式文件。
有谁知道这样的图书馆是否存在?如果没有,有人可以就我如何构建一个提供建议吗?
我非常确定我可以弄清楚将文本文件转换为数组的字符串操作。我最关心的是处理大量日志文件(因此我可能需要将数据流回磁盘或其他东西)。
真挚地, 卡梅伦
I'm looking for a ruby parser for the W3C Extended Log File Format.
http://www.w3.org/TR/WD-logfile.html
Ideally it would generate a multidimensional array based on the fields in the log file. I'm thinking something similar to how FasterCSV (http://fastercsv.rubyforge.org/) handles CSV files.
Does anyone know if such a library exists? If not could anyone provide advice on how I would build one?
I am pretty sure I can figure out the string manipulation to convert the text file into an array. I'm mostly concerned about handling massive log files (so potentially I'd need to stream the data back to disk or something).
Sincerely,
Cameron
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
让我们从强制性请求开始,看看您已经尝试过什么。
处理日志文件时,可伸缩性是一个大问题,因为它们可能会变得非常大。扩展格式比标准日志格式小,但您仍然必须意识到消耗大量 RAM 的可能性。
您可以使用正则表达式或简单的子字符串提取。子字符串提取速度更快,但缺乏酷感。
尝试运行不同的正则表达式,看看细微的变化如何在运行时产生巨大的差异。
在基准代码的正则表达式和子字符串版本中,您可以提取
ary.each do
循环作为您要查找的内容的基础。Let's start with the obligatory request to see what you have tried.
Scalability is a big issue when dealing with log files because they can get very big. The extended format is smaller than the standard log format but still you have to be aware of the potential for consumption of mass quantities of RAM.
You can use regular expressions or simple substring extracts. Substring extracts are faster but lack the cool-factor.
Try running the different regular expressions to see how subtle changes can make a big difference in run-time.
In both the regex and substring versions of the benchmark code you can extract the
ary.each do
loops for the basis of what you are looking for.