RE: Application Profiling

2005-06-08 Thread Peter Guzis
To: Chris; perl-win32-users Subject: Re: Application Profiling Hi, I would also like to create a browser like application but I don't know where I can find some examples. I don't want to create a full browser, but just a limited browser window in another application. Can anyone help

Re: Application Profiling

2005-06-08 Thread Octavian Rasnita
earn to do this? I would prefer using standard Win32 API and not other libraries like Tk. Thank you. Teddy - Original Message - From: "Chris" <[EMAIL PROTECTED]> To: "perl-win32-users" Sent: Wednesday, June 08, 2005 7:51 PM Subject: RE: Application Profil

RE: Application Profiling

2005-06-08 Thread Chris
> I'm in the final stages of building a web browser based application and > suddenly there are some significant slow-downs when it runs. > Any ideas or pointers? > Rod In addition to profiling, make sure the HTML being produced is not too large or complicated for the browser or bandwidth limit

Re: Application Profiling

2005-06-08 Thread Johan Lindstrom
At 02:02 2005-06-08, [EMAIL PROTECTED] wrote: I suspect IIS and the SQL Server as being the slow down but can't think of anyway to determine if they are or are not. http://use.perl.org/~jplindstrom/journal/19919 Try to enable DBI profiling: http://search.cpan.org/~timb/DBI-1.48/lib/DBI/Profile

RE: Application Profiling

2005-06-07 Thread Charles K. Clarkson
Chris Wagner wrote: : One simple thing you can do is have the scripts print timestamps to : a log file at every stage of processing. Function in/out etc. That : should let u get down to the culprit calls. You need the sub-second : resolution module, can't remember the name. Time::HiRes

RE: Application Profiling

2005-06-07 Thread Peter Guzis
script.pl This will give a good indication which parts of your script take the most time. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of [EMAIL PROTECTED] Sent: Tuesday, June 07, 2005 5:03 PM To: perl-win32-users@listserv.ActiveState.com Subject: Application

Re: Application Profiling

2005-06-07 Thread Chris Wagner
One simple thing you can do is have the scripts print timestamps to a log file at every stage of processing. Function in/out etc. That should let u get down to the culprit calls. You need the sub-second resolution module, can't remember the name. -- REMEMBER THE WORLD TRADE CENTER

Application Profiling

2005-06-07 Thread raanders
I'm in the final stages of building a web browser based application and suddenly there are some significant slow-downs when it runs. What do you use to profile an application? This is running on a Win2k Server , accessing SQL Server on another Win2k Server , using Activestate Perl 5.8 using t