> I looked at just about every template system on CPAN and came across
> text::template. Anyone use this one?

I'd suggest you read my overview of templating options.  It summarizes the
top choices for templating tools, and talks about the strengths of
weaknesses of  Text::Template..
http://perl.apache.org/features/tmpl-cmp.html

> I implamented some google style timing in the API. It's basicly gets a
> Time::HiRes timestamp in the beginning and does the math at the very end
> and posts it in an html comment.

You'd be better off with Devel::DProf (or Apache::DProg under mod_perl).

> My average transaction time is
> about .08 of a second. That leads me to think that my machine can handle
> 10 html page generations a second (this isn't an exact science, but
> close).

You are assuming serial execution.  You should be able to push much more
than that through in a second because of parallel execution.

> 3rd. my sql queries are not the most optimized and mostly tossed
> together.

DBIx::Profile can help you identify problems in your queries.  And follow
the optimization advice for DBI in the guide.

- Perrin

Reply via email to