Re: Optimizations on templates

2008-09-25 Thread David Cramer
Just use Jinja if you want faster template rendering ;) In all seriousness though, this sounds like an awesome optimization which I think should be fair game for 1.1. On Sep 24, 6:28 pm, Johannes Dollinger <[EMAIL PROTECTED]> wrote: > Am 25.09.2008 um 00:39 schrieb Manuel Saelices: > > > > > It'

Re: Optimizations on templates

2008-09-24 Thread Johannes Dollinger
Am 25.09.2008 um 00:39 schrieb Manuel Saelices: > > It's a different aproach. I consider my cache attempt a optimization > like URL dispatcher cache, without considering django cache system, > like url resolvers cache, _join_cache in orm or other many cases. > Also, I'm not sure that #6262 consi

Re: Optimizations on templates

2008-09-24 Thread Manuel Saelices
It's a different aproach. I consider my cache attempt a optimization like URL dispatcher cache, without considering django cache system, like url resolvers cache, _join_cache in orm or other many cases. Also, I'm not sure that #6262 consider the inheritance problem (look at copy.deepcopy(self.get_

Re: Optimizations on templates

2008-09-24 Thread Johannes Dollinger
Am 25.09.2008 um 00:10 schrieb Manuel Saelices: > > Hi, > > one week ago I've made a little change in template rendering engine to > get a huge performance improvement, in template rendering: > > http://code.djangoproject.com/ticket/9154 > > The optimizations where two: > 1) cache loaded templa

Optimizations on templates

2008-09-24 Thread Manuel Saelices
Hi, one week ago I've made a little change in template rendering engine to get a huge performance improvement, in template rendering: http://code.djangoproject.com/ticket/9154 The optimizations where two: 1) cache loaded templates that becames compiled. In a threaded environment, with many con