Re: Caching Filehandles (seen some light!!)

2007-01-04 Thread Jonathan Vanasco
On Jan 4, 2007, at 11:44 AM, Perrin Harkins wrote: There's probably not much benefit from caching filehandles if you still have to read the files anyway. The best thing to do would be to port to a more mature templating system. Short of that, caching the templates in memory (just

Re: Caching Filehandles (seen some light!!)

2007-01-04 Thread Perrin Harkins
#x27;s probably not much benefit from caching filehandles if you still have to read the files anyway. The best thing to do would be to port to a more mature templating system. Short of that, caching the templates in memory (just in a hash, not in a shared cache like the ones above) will g

Caching Filehandles (seen some light!!)

2007-01-04 Thread Anthony Gardner
Just realised, I could use Apache::Cache. Is there an MP2 version? Couldn't find one. Send instant messages to your online friends http://uk.messenger.yahoo.com

Caching Filehandles

2007-01-04 Thread Anthony Gardner
Happy New Year mod_perl(ers) (just buttering you up b4 I ask my question ;) ) Am working my way through a lot of existing code that was run as vanilla CGI and which we are porting to MP2(ish). anyway, they have their own html templates which are opened and closed for every request. Doh!! Befor