Re: simple xml parsing within html

1999-12-14 Thread Doug MacEachern
On Thu, 9 Dec 1999, G.W. Haywood wrote: any suggestions on making HTML::Parser work faster Performance is a real issue in mod_perl systems, so I've put some work into this. Maybe it will spawn a thread. Here are a couple of suggestions for speeding up HTML::Parser. Apparently the

Re: simple xml parsing within html

1999-12-09 Thread G.W. Haywood
Hi all, On Wed, 8 Dec 1999, Alex Menendez wrote in the mod_perl list: I currently have developed a dynamic content engine in mod_perl I initially tried to do this by subclassing HTML::Parser and over-riding the usual methods. However, this was painfully slow any suggestions on making

Re: simple xml parsing within html

1999-12-09 Thread Alex Menendez
yes, bill I am actually doing the same thing! however, I still would like a pre-cached transaction to run faster for those pages that are truly dynamic and can never really be cached effectively. -amen Bill Moseley wrote: At 08:47 PM 12/8/99 -0800, Alex Menendez wrote: I initially tried to

Re: simple xml parsing within html

1999-12-09 Thread Cliff Rayman
The HTML::Parser is written by Gisle Aas. I think he is more than well aware of the ABC's of programming as you laid them out here - the ones that made sense anyways. || ;--(()) cliff rayman genwax.com "G.W. Haywood" wrote: Hi all, On Wed, 8 Dec 1999, Alex Menendez wrote in the mod_perl

Re: simple xml parsing within html

1999-12-08 Thread Cliff Rayman
I read either on this list or another that the author of HTML::Parser was rewriting it to gain additional speed. There may be a beta version somewhere you can try. Check CPAN. cliff rayman genwax.com Alex Menendez wrote: hello, all I currently have developed a dynamic content engine in

Re: simple xml parsing within html

1999-12-08 Thread Craig Bullock
, December 08, 1999 10:56 PM Subject: simple xml parsing within html hello, all I currently have developed a dynamic content engine in mod_perl that parses html files on the fly for proprietary xml tags then replaces these tag trees with db content. I initially tried to do this by subclassing HTML