From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on dcvr.yhbt.net X-Spam-Level: * X-Spam-ASN: AS33070 50.56.128.0/17 X-Spam-Status: No, score=1.7 required=3.0 tests=AWL,HK_RANDOM_FROM, MSGID_FROM_MTA_HEADER,RDNS_NONE shortcircuit=no autolearn=no version=3.3.2 Path: news.gmane.org!not-for-mail From: Eric Wong Newsgroups: gmane.comp.lang.ruby.rainbows.general Subject: Re: c10k paradigm Date: Tue, 16 Apr 2013 20:48:13 +0000 Message-ID: <20130416204813.GA15083@dcvr.yhbt.net> References: <516BE872.5060006@objectdata.com.br> <20130415183011.GA27317@dcvr.yhbt.net> <516C2A48.3070808@objectdata.com.br> <20130415193403.GA742@dcvr.yhbt.net> <516D338C.9060408@objectdata.com.br> <20130416172417.GA12658@dcvr.yhbt.net> <516D6A0C.50406@objectdata.com.br> <20130416183500.GA10540@dcvr.yhbt.net> <516D882B.4070402@objectdata.com.br> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1366145321 2161 80.91.229.3 (16 Apr 2013 20:48:41 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 16 Apr 2013 20:48:41 +0000 (UTC) To: Rainbows! list Original-X-From: rainbows-talk-bounces-GrnCvJ7WPxnNLxjTenLetw@public.gmane.org Tue Apr 16 22:48:42 2013 Return-path: Envelope-to: gclrrg-rainbows-talk@m.gmane.org X-Original-To: rainbows-talk-GrnCvJ7WPxnNLxjTenLetw@public.gmane.org Delivered-To: rainbows-talk-GrnCvJ7WPxnNLxjTenLetw@public.gmane.org Content-Disposition: inline In-Reply-To: <516D882B.4070402-VwDbj2YsoUp0ZRtCdD4y8VAUjnlXr6A1@public.gmane.org> User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: rainbows-talk-GrnCvJ7WPxnNLxjTenLetw@public.gmane.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: rainbows-talk-bounces-GrnCvJ7WPxnNLxjTenLetw@public.gmane.org Errors-To: rainbows-talk-bounces-GrnCvJ7WPxnNLxjTenLetw@public.gmane.org X-Broken-Reverse-DNS: no host name found for IP address 50.56.192.79 Xref: news.gmane.org gmane.comp.lang.ruby.rainbows.general:479 Archived-At: Received: from [50.56.192.79] (helo=rubyforge.org) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1USCnp-0000uW-Al for gclrrg-rainbows-talk@m.gmane.org; Tue, 16 Apr 2013 22:48:33 +0200 Received: from localhost.localdomain (localhost [127.0.0.1]) by rubyforge.org (Postfix) with ESMTP id 9042D2E0F3; Tue, 16 Apr 2013 20:48:33 +0000 (UTC) Received: from dcvr.yhbt.net (dcvr.yhbt.net [64.71.152.64]) by rubyforge.org (Postfix) with ESMTP id 9D4F82E0EA for ; Tue, 16 Apr 2013 20:48:24 +0000 (UTC) Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 655031F442; Tue, 16 Apr 2013 20:48:21 +0000 (UTC) Alexandre Riveira wrote: > Em 16-04-2013 18:35, Eric Wong escreveu: > >See what Mark just said. Also, t/app_deferred.ru in the rainbows > >source[1]. There's also a link to Ezra's old post about it in the > >TryDefer documentation. > > > >[1] - git clone git://bogomips.org/rainbows && $EDITOR t/app_deferred.ru > > In file ems/rainbows-4.5.0/lib/rainbows/event_machine.rb line 74: > server.app.respond_to?(:deferred?) > server.app is a Rails::Rack::LogTailer class. > > should not be ActionController::Dispatcher.new or like ??? You should probably write a new middleware around/outside of your normal Rack layer. Something like this: class CheckDeferred < Struct.new(:app) def deferred?(env) case env["PATH_INFO"] when %r{/manager/}, %r{/foo/bar}, ... # whatever other paths you want multithreaded true else false end end end ----------- config.ru -------------- use CheckDeferred # needs to be the outermost layer of middleware use ... run Application.new ------------------------------------ _______________________________________________ Rainbows! mailing list - rainbows-talk-GrnCvJ7WPxnNLxjTenLetw@public.gmane.org http://rubyforge.org/mailman/listinfo/rainbows-talk Do not quote signatures (like this one) or top post when replying