精华帖 (0) :: 良好帖 (3) :: 新手帖 (0) :: 隐藏帖 (1)
|
|
---|---|
作者 | 正文 |
发表时间:2009-05-26
Rack是一个高效,简洁的框架(Webserver Interface)。其设计架构十分简单,如下图所示: (图片来源:http://amberbit.com/blog/2009/04/04/introduction-to-rack-middleware/) 图中的每个Module都可以说是一个Middleware。并且这个类似stack的结构可以“堆积”更多的Middleware。railscasts曾发过一个ResponseTimer Middleware,用来查看一个Rack请求的响应时间。最近利用ResponseTimer的原理,写了一个MiddlewareProfile Middleware,用来查看每一个Middleware在一次Request-Response周期中所占用的时间。这样,当往Rack中添加更多其他的Middleware时,可以利用MiddlewarePorfile来查看是否存在瓶颈。 1. 简单应用 app = Rack::Builder.new { use MiddlewareProfile use Rack::CommonLogger use Rack::ShowExceptions map "/" do use Rack::Deflater use Rack::Lint run Rack::Lobster.new end } 将 use MiddlewareProfile放在第一行,是为了显示Rack堆栈中的所有Middleware分别占用时间。控制台输出: "Rack::Lobster -- 1.002389" "Rack::Lint -- 0.00181100000000001" "Rack::Deflater -- 0.000687000000000104" "Rack::URLMap -- 0.000146999999999897" "Rack::ShowExceptions -- 7.00000000000145e-05" "Rack::CommonLogger -- 7.2000000000072e-05" 2. 可以改变use的位置来跳过某些Middleware的Profile: app = Rack::Builder.new { use Rack::CommonLogger use MiddlewareProfile use Rack::ShowExceptions map "/" do use Rack::Deflater use Rack::Lint run Rack::Lobster.new end } 这样,不会对CommonLogger进行Profile。 3. 使用:only, :except, :threshold参数 use MiddlewareProfile, :only => [Rack::Deflater, Rack::Lint] 只显示:only中指定Middleware的耗时信息 use MiddlewareProfile, :except => [Rack::CommonLogger, Rack::ShowExceptions] 不显示:except中指定的Middleware的耗时信息 use MiddlewareProfile, :threshold => 0.001 只显示耗时大于:threshold的Middleware
当然,这个Middleware只是从很高的层面来分析Rack中的各个Middleware占用的时间,如果要更详细的分析,还需要使用其他的库(ruby-prof...等)。 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |
浏览 2059 次