#16774 Backtracking URL resolver

2012-09-12 Thread meric
Hi, I looked at https://code.djangoproject.com/ticket/16774 and decided to implement the feature where views can raise urlresolvers.DoesNotResolve to make URL Resolver to keep searching for a URL. The diff is here: https://github.com/meric/django/compare/ticket_16774 It introduces a new Excep

Re: Is there any plan to improve the performance of "render"?

2012-09-12 Thread Karen Tracey
On Wed, Sep 12, 2012 at 12:56 PM, 富弘刘 wrote: > I use django-debug-toolbar to analyze my website and noticed a lot of time > is consumed by template render. In my each page, I have about 10ms in > database queries, and about 100 ms in render. Have you tried using the cached template loader (see

Re: Is there any plan to improve the performance of "render"?

2012-09-12 Thread Aymeric Augustin
Le 12 sept. 2012 à 18:56, 富弘刘 a écrit : > I use django-debug-toolbar to analyze my website and noticed a lot of time is > consumed by template render. In my each page, I have about 10ms in database > queries, and about 100 ms in render. Hi Fuhong, Yes, the Django Template Language is known t

Is there any plan to improve the performance of "render"?

2012-09-12 Thread 富弘刘
I use django-debug-toolbar to analyze my website and noticed a lot of time is consumed by template render. In my each page, I have about 10ms in database queries, and about 100 ms in render. Thanks. --Fuhong -- You received this message because you are subscribed to the Google Groups "Djang