JRuby - Tempfile.rb
有谁知道 tempfile.rb 在 JRuby 中是如何处理的。它在 Ruby 中,但不在 JRuby 中。
有人有什么想法吗?
干杯
埃夫
Does anyone know how tempfile.rb is handled in JRuby. It is in Ruby but not in JRuby.
Anyone got anyideas?
Cheers
Eef
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您仍然可以“需要'临时文件'”并且它会起作用。
在 JRuby 中,Tempfile 是用 Java 实现的。我们能够大幅提高性能,并避免在此过程中出现有问题的 stdlib 版本。
You can still "require 'tempfile'" and it will work.
In JRuby, Tempfile is implemented in Java. We were able to improve the performance substantially, and avoid the buggy stdlib version in the process.