Ruby ActiveRecord +杂种走得很慢

发布于 2024-09-02 04:29:10 字数 666 浏览 6 评论 0原文

我有一个这样的类:


class Router :: Mongrel::HttpHandler

  def process(req, res)
    status, header, body = [200, {"Content-type"=>"text/html"}, Model.all.to_xml]

    res.start(status) do |head, out|
      header.each_pair { |key, value|  head[key] = value }
        out.write body
      end
  end

end

它是一个服务器,我在另一端使用 ActiveResource 前端。

每第 3 个请求都非常慢(大约 5 秒,第 1 次和第 2 次还可以,大约 0.01 秒)。 Model.all.to_xml 中的问题(它是 ActiveRecord -> SQLite)。

为什么太慢?仅当我在 Mongrel::HttpHandler 中使用它时才会发生这种情况。 这


100.times do
  a = Time.now
  Car.all.to_xml
  puts "#{Time.now - a}"
  sleep(1)
end

总是有效的。

I have a class like this:


class Router :: Mongrel::HttpHandler

  def process(req, res)
    status, header, body = [200, {"Content-type"=>"text/html"}, Model.all.to_xml]

    res.start(status) do |head, out|
      header.each_pair { |key, value|  head[key] = value }
        out.write body
      end
  end

end

It's an server and I use an ActiveResource front end on the other side.

Every 3rd request is very slow (about 5 seconds, 1st and 2nd is ok, about 0.01 sec). The problem in Model.all.to_xml (it is ActiveRecord -> SQLite).

Why it is too slow? It only happens when I use it in Mongrel::HttpHandler..
This


100.times do
  a = Time.now
  Car.all.to_xml
  puts "#{Time.now - a}"
  sleep(1)
end

is always works good.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

似梦非梦 2024-09-09 04:29:11

ActiveRecord::Base.clear_active_connections!解决了问题。

ActiveRecord::Base.clear_active_connections! solved the problem.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文