#13781: select_related and multiple inheritance

2012-10-10 Thread Piotr Czachur
Hi! Patch from ticket #13781 looks like a good candidate for review as it fixes a few bugs in ORM. Could someone please take a look at it? Cheers, Piotrek. -- You received this message because you are subscribed to the Google Groups "Django developers" group. To view this discussion on the we

Re: #13781: select_related and multiple inheritance

2012-10-10 Thread Tomas Ehrlich
Works for me. I've just have to resolve two conflicts, new patch submited, see https://code.djangoproject.com/ticket/13781#comment:16. Cheers, Tom Dne Wed, 10 Oct 2012 01:47:38 -0700 (PDT) Piotr Czachur napsal(a): > Hi! > > Patch from ticket #13781 looks like a good candidate for review as i

URL dispatcher slow?

2012-10-10 Thread Moonlight
Here is an article comparing various URL dispatchers: http://mindref.blogspot.com/2012/10/python-web-routing-benchmark.html What cause django URL dispatcher that much... slow? -- You received this message because you are subscribed to the Google Groups "Django developers" group. To view this d

Re: Django performance vs others

2012-10-10 Thread Moonlight
I think this one explains how it works. By the way, I had the curiosity to take a look at Python ML entrywhich is called "Fastest web framework" and I the Wheezy > fra

Re: URL dispatcher slow?

2012-10-10 Thread Aymeric Augustin
2012/10/10 Moonlight > Here is an article comparing various URL dispatchers: > > http://mindref.blogspot.com/2012/10/python-web-routing-benchmark.html > > What cause django URL dispatcher that much... slow? Django's URL dispatcher is more complex than others. It provides advances features such

Re: Redesign of djangoproject.com?

2012-10-10 Thread Damián Pérez
I agree. Very good Idea, El sábado, 28 de abril de 2012 03:05:27 UTC-5, Russell Keith-Magee escribió: > > Hi Dana, > > I completely agree. I've been trying to get a redesign of > djangoproject.com going for quite some time under the auspices of the > Django Foundation. As you can see from the

Re: URL dispatcher slow?

2012-10-10 Thread Daniel Sokolowski
The middlewares appear to be disabled and the test bypasses the template system too: https://bitbucket.org/akorn/helloworld/src/c3f2d44dfca7/02-routing/django/helloworld/settings.py?at=default but yes Aymeric is right that Django provides a lot of convenience by default. In my opinion I rather

Re: URL dispatcher slow?

2012-10-10 Thread Daniel Sokolowski
Yes, wheezy.web is much more bare metal compared to Django : http://packages.python.org/wheezy.web/tutorial.html From: Daniel Sokolowski Sent: Wednesday, October 10, 2012 10:32 AM To: django-developers@googlegroups.com Subject: Re: URL dispatcher slow? The middlewares appear to be disabled and

Re: URL dispatcher slow?

2012-10-10 Thread Florian Apolloner
Oh cmon, please stop playing a socket puppet for the wheezy.web author. A web framework consists of more than just a win in speed (an the author of wheezy.web can argue whatever he wants that "basic" stuff stuff should be fast) -- if we were looking for speed we wouldn't use python at all (per

Re: Feature request: collectstatic shouldn't recopy files that already exist in destination

2012-10-10 Thread Stephen Burrows
Thanks, Florian. That clarifies things. I didn't realize collectstatic was using two backends, but it makes sense. And thanks for putting up with me not being up to speed on the IRC discussion. On Tuesday, October 9, 2012 1:20:39 AM UTC-7, Florian Apolloner wrote: > > Hi Stephen, > > On Tuesday,

Re: URL dispatcher slow?

2012-10-10 Thread Yo-Yo Ma
Why does every conversation about Django's performance met with "GTFO we don't care"? (that was a rhetorical question :). I'd venture to guess that most "It's fast enough for me!" responses are predicated on experiences that can be likened to personal blog development, rather than large scale, 1

Re: URL dispatcher slow?

2012-10-10 Thread Alex Ogier
On Wed, Oct 10, 2012 at 6:29 PM, Florian Apolloner wrote: > That said, if you really think Django's urlresolver is to slow, go ahead, > profile it and improve it, we certainly won't say no to speed improvements… > That's not really fair. Django core *will* say no to speed improvements if they nec