Message from discussion
what is exactly the name of the protocol that tornado uses?
Received: by 10.52.29.227 with SMTP id n3mr4284599vdh.7.1323675213799;
Sun, 11 Dec 2011 23:33:33 -0800 (PST)
X-BeenThere: python-tornado@googlegroups.com
Received: by 10.52.116.239 with SMTP id jz15ls4695914vdb.2.gmail; Sun, 11 Dec
2011 23:33:31 -0800 (PST)
Received: by 10.52.28.206 with SMTP id d14mr12503484vdh.3.1323675211217;
Sun, 11 Dec 2011 23:33:31 -0800 (PST)
Received: by 10.52.28.206 with SMTP id d14mr12503483vdh.3.1323675211206;
Sun, 11 Dec 2011 23:33:31 -0800 (PST)
Return-Path: <alabdeloua...@gmail.com>
Received: from mail-vw0-f56.google.com (mail-vw0-f56.google.com [209.85.212.56])
by gmr-mx.google.com with ESMTPS id jz14si718710vdb.1.2011.12.11.23.33.31
(version=TLSv1/SSLv3 cipher=OTHER);
Sun, 11 Dec 2011 23:33:31 -0800 (PST)
Received-SPF: pass (google.com: domain of alabdeloua...@gmail.com designates 209.85.212.56 as permitted sender) client-ip=209.85.212.56;
Authentication-Results: gmr-mx.google.com; spf=pass (google.com: domain of alabdeloua...@gmail.com designates 209.85.212.56 as permitted sender) smtp.mail=alabdeloua...@gmail.com
Received: by vbbfn1 with SMTP id fn1so2264536vbb.11
for <python-tornado@googlegroups.com>; Sun, 11 Dec 2011 23:33:31 -0800 (PST)
MIME-Version: 1.0
Received: by 10.52.92.132 with SMTP id cm4mr2258707vdb.0.1323675211053; Sun,
11 Dec 2011 23:33:31 -0800 (PST)
Received: by l24g2000yqm.googlegroups.com with HTTP; Sun, 11 Dec 2011 23:33:30
-0800 (PST)
Date: Sun, 11 Dec 2011 23:33:30 -0800 (PST)
In-Reply-To: <1323667635.11739.14.camel@portable-evil>
References: <CAP4kiWr-FwCzC5t2=WMjDhb=eGRCDdcYDK38cd9_j1VhZ_q0EQ@mail.gmail.com>
<4EE13CF5.5080200@ei-grad.ru> <CABJfL5jr4XHFuSjXBhR3Va4Et4yVfX3A8+fU7E4xFuiRHaVVNQ@mail.gmail.com>
<CAP4kiWotG4SfxYeCigdTy8OCZbjkMxDmHcJA1Re-=skTxmi8QA@mail.gmail.com>
<CAJZrG8iOD8zSDTA1VAd+fdsga9dvnJJSfq9MEMGZkigChE-rsA@mail.gmail.com>
<CAP4kiWpeqK1_oZefxu8hYaAtyZVOJfofBuo_iZaY1_Km-RPpjQ@mail.gmail.com>
<1323450294.2316.5.camel@portable-evil> <CAP4kiWrvMfgY+-McxTo0Mtm36Pcvn_71q_txGXoTckdnVYKqwQ@mail.gmail.com>
<1323452723.2316.32.camel@portable-evil> <CAP4kiWqqbNcbBQwM2vWNXJ6bTE=cyihE7B7tUfLWKx7E8sN...@mail.gmail.com>
<1323536801.2316.36.camel@portable-evil> <CAP4kiWp-Mzwx=P-H2KwExJ=ARjTmLqFgP1Y6BJpiFAhw5qy...@mail.gmail.com>
<1323564457.2887.0.camel@portable-evil> <68ba40b5-d4f6-4eba-a931-19a86b7db...@w3g2000vbw.googlegroups.com>
<1323667635.11739.14.camel@portable-evil>
User-Agent: G2/1.0
X-HTTP-Via: 1.1 passerelle.depinfo.to:3128 (squid/2.5.STABLE14)
X-HTTP-UserAgent: Mozilla/5.0 (Ubuntu; X11; Linux i686; rv:8.0) Gecko/20100101 Firefox/8.0,gzip(gfe)
Message-ID: <b8beeac4-444a-41a4-a5b8-1f22d1b1b...@l24g2000yqm.googlegroups.com>
Subject: Re: what is exactly the name of the protocol that tornado uses?
From: aliane abdelouahab <alabdeloua...@gmail.com>
To: Tornado Web Server <python-tornado@googlegroups.com>
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable
now i see the idea in the clear side!
thank you for the help!
about WSGI, is it the WEB3 project? http://www.python.org/dev/peps/pep-0444=
/
or http://mail.python.org/pipermail/web-sig/2011-January/004871.html
On Dec 12, 6:27=A0am, Cliff Wells <cl...@develix.com> wrote:
> On Sat, 2011-12-10 at 23:17 -0800, aliane abdelouahab wrote:
> > am sorry if i'm a little bit hard to understand, but isent something
> > like FastCGI?
>
> Yes. =A0FastCGI is more efficient than CGI since the interpreter doesn't
> need to be loaded fresh for every request. =A0Still, FastCGI applications
> tend to utilize process-based concurrency models so scalability tends to
> be limited (it's possible to write async apps using FCGI, but for some
> reason it isn't popular, probably because HTTP is simpler).
>
> WSGI was supposed to develop an async interface, but last I heard (a few
> years ago), the idea was ditched due to requiring backwards-incompatible
> changes to the API.
>
> Cliff