使用 Rails 2.3.5 更快地生成 XML
我正在使用 Rails 2.3.5 作为移动应用程序的后端之一。它会生成大量 XML。我发现 fast_xs gem 大大加快了 xml 生成速度。现在,我的问题是 - 我应该在 Rails 2.3.5 中使用这个 gem,还是 Rails 2.3.5 已经内置了这个机制。
Am using Rails 2.3.5 for one of the mobile app's backend. It generates hell lot of XML. I have come across that the fast_xs gem speeds up the xml-generation by a lot. Now, my questions is - should I use this gem in Rails 2.3.5 or does Rails 2.3.5 already have this mechanism built in it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Rails 的任何版本都没有内置
fast_xs
gem。您可以通过安装fast_xs
或hpricot
来获取它。注意:Builder 版本 3 破坏了它( Rails 3.1 使用)所以你需要一个猴子补丁来解决(或者等待新版本的 fast_xs)
No version of Rails has the
fast_xs
gem built in. You can get it by either installingfast_xs
orhpricot
Note: Builder version 3 breaks it (used by Rails 3.1) so you will need a monkey patch to work around (or wait for a new version of fast_xs)