From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <4cfdcc54e68c9e0114113582a8e2e22e@9netics.com> To: 9fans@9fans.net Date: Sun, 11 Oct 2015 23:55:12 -0700 From: Skip Tavakkolian <9nut@9netics.com> In-Reply-To: <7A773810-49DE-44E8-96D4-8E6F56A247C9@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Subject: Re: [9fans] Web Gardens Topicbox-Message-UUID: 7270a248-ead9-11e9-9d60-3106f5b1d025 if it's the term used by IIS, i think it refers to how a server handles web requests: (a) one process handling all requests -- i.e. in a select() loop -- or (b) a process pool, with each process handling one request. the latter is a "web garden" model. plan9's httpd starts a proc for each new request. > As a diversion from the discussion of the existential essence of > Javascript, could I ask the group for a view on the meaning of the > term "Web Garden"? I was just asked about this in a job interview. > Supplementary question - how would you implement a Web Garden in > Plan9?