Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #108690
| Path | csiph.com!news.swapon.de!fu-berlin.de!uni-berlin.de!not-for-mail |
|---|---|
| From | Grant Edwards <grant.b.edwards@gmail.com> |
| Newsgroups | comp.lang.python |
| Subject | Re: OT: limit number of connections from browser to my server? |
| Date | Mon, 16 May 2016 19:35:25 +0000 (UTC) |
| Lines | 26 |
| Message-ID | <mailman.32.1463427606.19823.python-list@python.org> (permalink) |
| References | <nhcr5g$o1k$1@ger.gmane.org> <nhd0bn$isq$1@ger.gmane.org> <mailman.24.1463420114.19823.python-list@python.org> <ee18c41b-7034-4934-8d63-c23aba5bf6e2@googlegroups.com> <1463421892.3941681.609425321.08BA9E0D@webmail.messagingengine.com> <nhd7dt$je7$5@ger.gmane.org> |
| X-Trace | news.uni-berlin.de a5r2+QKAsdb1AH8iLUD1eQjH3PBsPKChuyScbi/wmAxg== |
| Return-Path | <python-python-list@m.gmane.org> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.001 |
| X-Spam-Evidence | '*H*': 1.00; '*S*': 0.00; '16,': 0.03; 'default.': 0.07; 'subject:number': 0.07; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'received:qwest.net': 0.09; '2016': 0.16; 'received:80.91.229.3': 0.16; 'received:io': 0.16; 'received:plane.gmane.org': 0.16; 'received:psf.io': 0.16; 'subject:limit': 0.16; 'subject:server': 0.16; 'tcp': 0.16; 'wrote:': 0.16; '>>>': 0.20; 'browsers': 0.22; 'disabled': 0.22; 'referring': 0.22; 'sorry,': 0.22; 'mon,': 0.24; 'requests': 0.25; 'header:User-Agent:1': 0.26; 'header:X-Complaints-To:1': 0.26; 'right.': 0.27; 'convince': 0.29; 'url:wikipedia': 0.29; 'allows': 0.30; 'url:wiki': 0.30; 'connections': 0.30; "he's": 0.33; 'something': 0.35; 'asking': 0.35; "isn't": 0.35; 'supports': 0.35; 'but': 0.36; 'url:org': 0.36; 'possible.': 0.36; 'monday,': 0.36; 'to:addr:python-list': 0.36; 'subject:?': 0.36; 'subject:: ': 0.37; 'received:org': 0.37; 'url:en': 0.39; 'subject:from': 0.39; "didn't": 0.39; 'to:addr:python.org': 0.40; 'email addr:gmail.com': 0.62; 'connection.': 0.76; 'otten': 0.84; 'utc-7,': 0.84; 'edwards': 0.91 |
| X-Injected-Via-Gmane | http://gmane.org/ |
| X-Gmane-NNTP-Posting-Host | 67-130-15-94.dia.static.qwest.net |
| User-Agent | slrn/1.0.2 (Linux) |
| X-BeenThere | python-list@python.org |
| X-Mailman-Version | 2.1.22 |
| Precedence | list |
| List-Id | General discussion list for the Python programming language <python-list.python.org> |
| List-Unsubscribe | <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-list/> |
| List-Post | <mailto:python-list@python.org> |
| List-Help | <mailto:python-list-request@python.org?subject=help> |
| List-Subscribe | <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| X-Mailman-Original-Message-ID | <nhd7dt$je7$5@ger.gmane.org> |
| X-Mailman-Original-References | <nhcr5g$o1k$1@ger.gmane.org> <nhd0bn$isq$1@ger.gmane.org> <mailman.24.1463420114.19823.python-list@python.org> <ee18c41b-7034-4934-8d63-c23aba5bf6e2@googlegroups.com> <1463421892.3941681.609425321.08BA9E0D@webmail.messagingengine.com> |
| Xref | csiph.com comp.lang.python:108690 |
Show key headers only | View raw
On 2016-05-16, Random832 <random832@fastmail.com> wrote:
> On Mon, May 16, 2016, at 13:57, sohcahtoa82@gmail.com wrote:
>> On Monday, May 16, 2016 at 10:35:28 AM UTC-7, Peter Otten wrote:
>>
>>> I think HTTP/2 allows multiple requests over a single TCP connection.
>>
>> HTTP/1.1 already supports it, but most browsers have it disabled by
>> default.
>>
>> https://en.wikipedia.org/wiki/HTTP_pipelining
Oops, sorry, I didn't see that you were referring to something other
than persistent connections.
> Technically, what he's asking for isn't even pipelining.
>
> https://en.wikipedia.org/wiki/HTTP_persistent_connection
Right. I just want convince browsers to use persistent connections and
as few of them as possible.
--
Grant Edwards grant.b.edwards Yow! One FISHWICH coming
at up!!
gmail.com
Back to comp.lang.python | Previous | Next — Previous in thread | Find similar | Unroll thread
Re: OT: limit number of connections from browser to my server? Peter Otten <__peter__@web.de> - 2016-05-16 19:34 +0200
Re: OT: limit number of connections from browser to my server? sohcahtoa82@gmail.com - 2016-05-16 10:57 -0700
Re: OT: limit number of connections from browser to my server? Random832 <random832@fastmail.com> - 2016-05-16 14:04 -0400
Re: OT: limit number of connections from browser to my server? Grant Edwards <grant.b.edwards@gmail.com> - 2016-05-16 19:35 +0000
csiph-web