Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder4.news.weretis.net!rt.uk.eu.org!newsfeed.xs4all.nl!newsfeed4.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.002 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'subject:Python': 0.06; 'compiler': 0.07; 'pypy': 0.07; 'python': 0.11; 'apache': 0.15; '22:06,': 0.16; 'mean,': 0.16; 'numpy': 0.16; 'optimised': 0.16; 'sat,': 0.16; 'sender:addr:gmail.com': 0.17; 'wrote:': 0.18; 'module': 0.19; 'code,': 0.22; 'to:name:python-list@python.org': 0.22; 'install': 0.23; 'compilation': 0.24; 'library,': 0.24; 'decide': 0.24; 'server.': 0.24; 'header:In-Reply-To:1': 0.27; 'hosting': 0.29; 'host': 0.29; 'chris': 0.29; 'am,': 0.29; 'message-id:@mail.gmail.com': 0.30; 'code': 0.31; 'page.': 0.31; 'that.': 0.31; 'subject:Database': 0.31; 'though.': 0.31; 'service,': 0.32; 'run': 0.32; 'another': 0.32; 'running': 0.33; 'actual': 0.34; 'but': 0.35; 'received:google.com': 0.35; 'application': 0.37; 'server': 0.38; 'to:addr:python-list': 0.38; 'that,': 0.38; 'to:addr:python.org': 0.39; 'inexpensive': 0.84 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:from:date:message-id :subject:to:content-type:content-transfer-encoding; bh=/ltjjajv4fCZtijCY9b7RlahGj8L8fRJ+eWGAbaPYJA=; b=Q5uoPmVoh+ySvVrKK5bX5LmJVwTZhhbgvFMdGzvIy9gFE7vwYJ0ePd1lIco3XJQbTh e9P1wznDyHqoRHArhpK+abmwVtUz1vnw3FsO2tFtEj/r3HZ+qJw4Bg+hWsi37xaA18Vz b1B4xEKV9WIqsHfZOSUUUyrHYRyYKDVhshaMj5olGwtEAWk1ec17vcjugD4c17ofEBE0 BBWwl25FfIf/oLVXF+ORTKSm6GAtmayS1XJXuDOZWgYRln2jTA16FKhtiuKkaMWAnL+Q DEGlxrzMb+9nh1kJNtraUQ0ItyBcfD80PLfVDuuCGCwd2P9yB4D5No73wUwiXrVC1nwq 9vnA== X-Received: by 10.180.212.48 with SMTP id nh16mr749558wic.49.1400551742733; Mon, 19 May 2014 19:09:02 -0700 (PDT) MIME-Version: 1.0 Sender: joshua.landau.ws@gmail.com In-Reply-To: References: From: Joshua Landau Date: Tue, 20 May 2014 03:08:22 +0100 X-Google-Sender-Auth: RyUatY8L_A0sDY7TTsg7golBz2o Subject: Re: Python Internet Database To: "python-list@python.org" Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 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: 15 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1400551745 news.xs4all.nl 2874 [2001:888:2000:d::a6]:58933 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:71786 On 9 May 2014 22:06, Chris Angelico wrote: > On Sat, May 10, 2014 at 6:45 AM, wrote: >> 2 - Jit compiler for using from a web server. I mean, one has a web serv= er running under Apache in a hosting service like Hostgator, Daddy Host or = another inexpensive service. I decide to run a few applications in Racket, = but the application requires number crunching. I install the Jit Racket in= the hosting service, and call it from my dynamic generated page. My progra= ms will run almost at the speed of optimised C. >> > > For number crunching, you can use the numpy library, which is highly > efficient. For general JIT compilation of actual Python code, PyPy > will do that. AFAIK there's no standard module for that, though. There's also Numba for JIT compilation of Numpy code inside CPython.