2007-07-03から1日間の記事一覧

並列処理を観察する

こんな感じのコントローラで並列処理を観察。 class FooController < ApplicationController def bar puts "start: #{Time.new}" 30.times { sleep(1) } puts "end: #{Time.new}" render :text => 'hello' end end 結果。 start: Tue Jul 03 23:36:15 +0900 …