日志文件的大小是否会影响 Ruby 中 Logger 类的日志处理时间?
我正在使用 Ruby 标准库中的 Logger 类。
http://rubylearning.com/satishtalim/ruby_logging.html
我每周轮换一个日志文件。
如果日志文件变大,日志处理时间会变长吗?
或者是否需要更多的CPU或内存?
I'm using the Logger class in Ruby's standard library.
http://rubylearning.com/satishtalim/ruby_logging.html
I rotate a log file weekly.
If the size of a log file become larger, will the processing time of loging become longer?
Or will more CPU or memory be required?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它只是附加到日志文件的末尾,而不是读取日志文件或任何内容:)
It's just going to append to the end of the log file, it's not like it reads the log file in or anything :)