--- Oberdan Luiz May <[EMAIL PROTECTED]> wrote: > Hello all, > > Some time ago I started rewriting an old reporting system I've made, > trying to add some funcionalities and making it run faster. One of the main > problems is that, depending on the report choosen by the user, the result is > a VERY BIG list. I cant use mod_perl (at least for a while), so I was > thinking about using CGI::Simple instead of CGI and HTML::Template::Pro > instead of HTML::Template. >
I rewrote a similar system a while ago. it runs in plain CGI mode and serves internal clients only. I used Template-Toolkit instead of H::T though. the system parses csv file and display result in html to user. when dealing with big file (30M-40M), the bottleneck is on TT's html generation step. we also provide .csv( and .xls which converted on the fly) formats for user to download so user can d/l the .csv and open it up directly if the file is too big to be displayed in html. if we are going to fix it, i will choose to do either 1) pagination or 2) a cron job generates the reports every night. > Is there any known compatibility problem if I change these modules? If > its OK, which is the best way of changing HTML::Template to > HTML::Template::Pro? > > Thanks, > > Oberdan > James. __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com --------------------------------------------------------------------- Web Archive: http://www.mail-archive.com/[email protected]/ http://marc.theaimsgroup.com/?l=cgiapp&r=1&w=2 To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
