Hey yufeng, 2010/7/23 yufeng <[email protected]>: > hi: > > http://www.lgys.9966.org ,this my web write with wt 3.1.3. > > in wt_config.xml, I modify this > ... > <shared-process> > <num-processes>10</num-processes> > </shared-process> > > <num-threads>10</num-threads> > .... > > when I change page,sometimes show page very slowly,and screen show red > "loading ...",if I refresh this page ,show it very quickly.
This could be caused by your apache configuration: make sure you are allowing enough concurrent connections. You can also rule out other problems by comparing to a deployment using the built-in httpd. > [2010-Jul-23 18:52:19.534836] 5005 [/LGXTWeb.fcgi Ct7RdtSXvY4i6m80] [warn] > "WContainerWidget::addWidget(): reparenting widget" This is a warning that could be innocent: usually you can avoid reparenting a widget, it means that it is moved around in the widget tree. It is not what is causing the slowness you perceive. If you want to detect the offending line, you can put a break-point with your debugger at WContainerWidget.C:141 (or around there, depending on your Wt version) and back-trace from there. Regards, koen ------------------------------------------------------------------------------ This SF.net email is sponsored by Sprint What will you do first with EVO, the first 4G phone? Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first _______________________________________________ witty-interest mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/witty-interest
