Re: [pypy-dev] Is PyPy appropriate for Django?

2011-08-25 Thread Armin Rigo
Hi Andy, On Wed, Aug 24, 2011 at 11:26 PM, Andy angelf...@yahoo.com wrote: 1) For URL routing Django uses the re module, which is a C extension. Would JIT work with that? Is this re the regular expression module? If so, it's a standard library module, so PyPy provides one too, rewritten in

Re: [pypy-dev] Is PyPy appropriate for Django?

2011-08-25 Thread Andy
AM Subject: Re: [pypy-dev] Is PyPy appropriate for Django? I'm not using Django but another web platform; I've found some speedup using pypy after the JIT has kicked in, but it did require some profiling and adjusting of my code. Why not give pypy a go? - Original Message - From: Andy

Re: [pypy-dev] Is PyPy appropriate for Django?

2011-08-25 Thread Leonardo Santagada
On Wed, Aug 24, 2011 at 6:26 PM, Andy angelf...@yahoo.com wrote: Hi, In the PyPy benchmark there's a Django test that shows tremendous speedup of Django when running PyPy-JIT. But that is just for Django templates. What about the other parts of Django? Did you notice that there is also a

Re: [pypy-dev] Is PyPy appropriate for Django?

2011-08-25 Thread David Fraser
Subject: Re: [pypy-dev] Is PyPy appropriate for Django? I'm not using Django but another web platform; I've found some speedup using pypy after the JIT has kicked in, but it did require some profiling and adjusting of my code. Why not give pypy a go? - Original Message - From: Andy angelf

[pypy-dev] Is PyPy appropriate for Django?

2011-08-24 Thread Andy
Hi, In the PyPy benchmark there's a Django test that shows tremendous speedup of Django when running PyPy-JIT. But that is just for Django templates. What about the other parts of Django? 1) For URL routing Django uses the re module, which is a C extension. Would JIT work with that? 2) Other

Re: [pypy-dev] Is PyPy appropriate for Django?

2011-08-24 Thread Leonardo Santagada
On Wed, Aug 24, 2011 at 6:26 PM, Andy angelf...@yahoo.com wrote: Hi, In the PyPy benchmark there's a Django test that shows tremendous speedup of Django when running PyPy-JIT. But that is just for Django templates. What about the other parts of Django? 1) For URL routing Django uses the re