Return-Path: Delivered-To: apmail-httpd-modules-dev-archive@minotaur.apache.org Received: (qmail 96599 invoked from network); 11 Feb 2011 12:57:09 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 11 Feb 2011 12:57:09 -0000 Received: (qmail 18790 invoked by uid 500); 11 Feb 2011 12:57:09 -0000 Delivered-To: apmail-httpd-modules-dev-archive@httpd.apache.org Received: (qmail 18533 invoked by uid 500); 11 Feb 2011 12:57:07 -0000 Mailing-List: contact modules-dev-help@httpd.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: modules-dev@httpd.apache.org Delivered-To: mailing list modules-dev@httpd.apache.org Received: (qmail 18524 invoked by uid 99); 11 Feb 2011 12:57:06 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 11 Feb 2011 12:57:06 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of info@bnoordhuis.nl designates 209.85.213.173 as permitted sender) Received: from [209.85.213.173] (HELO mail-yx0-f173.google.com) (209.85.213.173) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 11 Feb 2011 12:56:58 +0000 Received: by yxl31 with SMTP id 31so1190584yxl.18 for ; Fri, 11 Feb 2011 04:55:54 -0800 (PST) MIME-Version: 1.0 Received: by 10.151.106.16 with SMTP id i16mr545455ybm.65.1297428954593; Fri, 11 Feb 2011 04:55:54 -0800 (PST) Received: by 10.151.111.5 with HTTP; Fri, 11 Feb 2011 04:55:54 -0800 (PST) X-Originating-IP: [195.130.156.9] In-Reply-To: References: Date: Fri, 11 Feb 2011 13:55:54 +0100 Message-ID: Subject: Re: mod_ruby on Apache for Windows 2.2.17 From: Ben Noordhuis To: modules-dev@httpd.apache.org Content-Type: text/plain; charset=ISO-8859-1 On Fri, Feb 11, 2011 at 08:25, Zeno Davatz wrote: > I am trying to debug mod_ruby to load in Apache for Windows. So far > Apache for Windows does start with mod_ruby.so but it seems that httpd > does not start correctly with mod_ruby enabled in Apache for Windows. I don't have a solution for you but I would suggest to not do this (run mod_ruby on Windows, that is). Apache on Windows serves all requests from a single process. The Ruby interpreter is not thread-safe so mod_ruby creates a Big Mutex whenever it needs to run. Thus on Windows, with its single-process model, mod_ruby can only serve one request at a time.