为什么Application#call会很慢?

时间:2014-12-18 17:55:00

标签: ruby-on-rails-4 rack

出于某种原因,我的::Application#call速度非常慢。在一个案例中,根据New Relic的仪器,它花了3,840ms

文档仅将此方法描述为:Implements call according to the Rack API. It simply dispatches the request to the underlying middleware stack.

甚至到达ActionDispatch::Routing::RouteSet#call还需要5秒钟,更不用说我的控制器了。

为什么这会这么慢?我可以在哪里尝试进一步深入研究这个问题?

我的中间件看起来都不是特别奇怪:

use Raven::Rack
use #<ActiveSupport::Cache::Strategy::LocalCache::Middleware:0x007fd836083e08>
use Rack::Runtime
use ActionDispatch::RequestId
use Rails::Rack::Logger
use Rack::Cors
use ActionDispatch::ShowExceptions
use ActionDispatch::DebugExceptions
use ActionDispatch::RemoteIp
use ActionDispatch::Callbacks
use ActiveRecord::ConnectionAdapters::ConnectionManagement
use ActiveRecord::QueryCache
use ActionDispatch::ParamsParser
use Clearance::RackSession
use Rack::Head
use Rack::ConditionalGet
use Rack::ETag
use ActionDispatch::Flash
use Rack::SslEnforcer
run CookacademyApi::Application.routes

1 个答案:

答案 0 :(得分:0)

不要过分依赖NewRelic指标。我最近得到了同样的问题,估计大约3秒的页面NR加载。关闭几个应用程序并重新启动firefox NR后显示不到300毫秒