Path: csiph.com!eternal-september.org!feeder.eternal-september.org!border1.nntp.ams1.giganews.com!nntp.giganews.com!newsfeed.xs4all.nl!newsfeed7.news.xs4all.nl!nzpost1.xs4all.net!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.016 X-Spam-Evidence: '*H*': 0.97; '*S*': 0.00; 'skip:/ 10': 0.07; 'here?': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'url:github': 0.09; 'example:': 0.10; '"get': 0.16; 'received:80.91.229.3': 0.16; 'received:dip0.t-ipconnect.de': 0.16; 'received:plane.gmane.org': 0.16; 'received:t-ipconnect.de': 0.16; 'seconds.': 0.16; 'wrote:': 0.16; 'header:User-Agent:1': 0.26; 'header:X-Complaints-To:1': 0.26; 'skip:/ 20': 0.33; 'know.': 0.34; 'done': 0.35; 'subject:time': 0.35; 'something': 0.35; 'sometimes': 0.35; 'but': 0.36; 'there': 0.36; 'created': 0.36; 'to:addr:python-list': 0.36; 'subject:: ': 0.37; 'received:org': 0.37; 'application': 0.39; 'to:addr:python.org': 0.40; 'received:de': 0.40; 'different': 0.63; 'between': 0.65; 'six': 0.65; '127.0.0.1': 0.84; 'bottle:': 0.84; 'cecil': 0.84; 'url:cecilwesterhof': 0.84; 'westerhof': 0.84 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Peter Otten <__peter__@web.de> Subject: Re: Sometimes bottle takes a lot of time Date: Sat, 22 Aug 2015 09:49:05 +0200 Organization: None References: <87si7cnxq6.fsf@Equus.decebal.nl> Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit X-Gmane-NNTP-Posting-Host: p57bd9711.dip0.t-ipconnect.de User-Agent: KNode/4.13.3 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.20+ Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 34 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1440229764 news.xs4all.nl 23761 [2001:888:2000:d::a6]:35139 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:95547 Cecil Westerhof wrote: > I created a simple application with bottle: > https://github.com/CecilWesterhof/PublishedPhotos > > But sometimes it needs a lot of time. For example: > 127.0.0.1 - - [21/Aug/2015 23:16:40] "GET / HTTP/1.1" 304 0 > 127.0.0.1 - - [21/Aug/2015 23:16:40] "GET /static/css/default.css > HTTP/1.1" 304 0 127.0.0.1 - - [21/Aug/2015 23:16:46] "GET > /static/JavaScript/angular.js HTTP/1.1" 304 0 127.0.0.1 - - [21/Aug/2015 > 23:16:46] "GET /static/appPublishedPhotos.js HTTP/1.1" 304 0 127.0.0.1 - - > [21/Aug/2015 23:16:46] "GET /links/data HTTP/1.1" 200 2884 127.0.0.1 - - > [21/Aug/2015 23:16:52] "GET /versionPython HTTP/1.1" 200 5 127.0.0.1 - - > [21/Aug/2015 23:16:52] "GET /versionSQLite HTTP/1.1" 200 5 > > Between default.css and angular.js there are six seconds. And between > /links/data and /versionPytjon is again six seconds. What is happening > here? I don't know. Is it bottle, or the browser, or something completely different that eats the extra time? > Just before everything was done in a second: > 127.0.0.1 - - [21/Aug/2015 23:16:22] "GET / HTTP/1.1" 200 956 > 127.0.0.1 - - [21/Aug/2015 23:16:22] "GET /static/css/default.css > HTTP/1.1" 304 0 127.0.0.1 - - [21/Aug/2015 23:16:22] "GET > /static/appPublishedPhotos.js HTTP/1.1" 304 0 127.0.0.1 - - [21/Aug/2015 > 23:16:22] "GET /static/JavaScript/angular.js HTTP/1.1" 304 0 127.0.0.1 - - > [21/Aug/2015 23:16:23] "GET /versionPython HTTP/1.1" 200 5 127.0.0.1 - - > [21/Aug/2015 23:16:23] "GET /links/data HTTP/1.1" 200 2884 127.0.0.1 - - > [21/Aug/2015 23:16:23] "GET /versionSQLite HTTP/1.1" 200 5 >