Ruby on Rails 从 CSV 迁移到 FasterCSV
我目前有以下代码来使用标准 csv 库解析 csv 文件,
@parsed_file=CSV::Reader.parse(params[:dump][:file])
@parsed_file.each do |row|
#some code
end
我想将其移动到更快的 csv 以提高速度。有谁知道 FasterCSV 与上述等效的内容吗?
谢谢
I currently have the following code to parse a csv file using the standard csv library
@parsed_file=CSV::Reader.parse(params[:dump][:file])
@parsed_file.each do |row|
#some code
end
I want to move this to faster csv for the increased speed. Does anyone know the equivalent of the above for FasterCSV?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
和
是等价的。
但是
将文件名作为参数并从文件中读取和解析数据,但是当您在参数中传递数据时转储文件内容
应该可以正常工作。
and
are equivalent.
But
takes filename as parameter and reads and parse data from the file however you are dumping the file content as you are passing data in the parameter
should work fine.
要使用文件路径(如您所看到的那样)执行此操作:
您可以检查 FasterCSV 文档 以获取其他信息执行此操作的方法(例如,在解析时处理每一行,或者从字符串而不是文件中读取)。
To do it with a file path (as you appear to be):
You can check the FasterCSV docs for other ways to do it (e.g., process each row as it's parsed, or read from a string instead of a file).