Re: while - modperl 2.0/Apache 2.0

2002-07-31 Thread Stas Bekman
Alessandro Forghieri wrote: Greetings. I have observed the same behavior (on win32). Scripts that are invoked from the same browser through the same URL appear to bind to the same perl thread and are therefore serialized. Changing the URL appears to bind the request to a different

Re: while - modperl 2.0/Apache 2.0

2002-07-31 Thread Stas Bekman
Stas Bekman wrote: Alessandro Forghieri wrote: Greetings. I have observed the same behavior (on win32). Scripts that are invoked from the same browser through the same URL appear to bind to the same perl thread and are therefore serialized. Changing the URL appears to bind the

Re: while - modperl 2.0/Apache 2.0

2002-07-31 Thread Udlei Nattis
hi, this problem is stranger when i use apache 1.3/modperl 1.27 this problem don't exist i think problem is because thread in apache2 or modperl2 lynx dont have problem because is other instance if you open 2 instances of mozilla you dont have problem but if you open one mozilla and 5 tab

Re: while - modperl 2.0/Apache 2.0

2002-07-31 Thread Stas Bekman
Udlei Nattis wrote: hi, this problem is stranger when i use apache 1.3/modperl 1.27 this problem don't exist i think problem is because thread in apache2 or modperl2 That's the thing. I've had the same behavior with apache 1.3/modperl 1.27, so I don't think this has anything to do with

RE: while - modperl 2.0/Apache 2.0

2002-07-18 Thread Alessandro Forghieri
Greetings. I have observed the same behavior (on win32). Scripts that are invoked from the same browser through the same URL appear to bind to the same perl thread and are therefore serialized. Changing the URL appears to bind the request to a different thread. (My observation regarded access

Re: while - modperl 2.0/Apache 2.0

2002-07-17 Thread Stas Bekman
ok, looks like your setup is fine. Though I cannot seem to reproduce your problem. Indeed it seems that the unbuffered output doesn't work. I'm checking on that. But I've devised a better test that verifies that the requests aren't serialized. If you run this hander by two clients at the same

Re: while - modperl 2.0/Apache 2.0

2002-07-17 Thread Udlei Nattis
thanks ;) now i understand to run in others browser instances you need change url example: http://127.0.0.1/hello-world?a http://127.0.0.1/hello-world?b http://127.0.0.1/hello-world?c http://127.0.0.1/hello-world?d /tmp/test123 1505: 162 - thread 1505: 155 - thread 1578: 146 1505: 131 - thread

while - modperl 2.0/Apache 2.0

2002-07-16 Thread Udlei Nattis
hi sorry my english i have one problem when i open 2 browsers intance and access my perl script instance 1 run script OK instance 2 waiting instance 1 finalize to run :/ i need run simultane 2 instance (modperl 2.0 dev 5 / perl 8 rc 3 / apache 2.0 prefork or worker ) example: #!/usr/bin/perl

Re: while - modperl 2.0/Apache 2.0

2002-07-16 Thread Stas Bekman
Udlei Nattis wrote: hi sorry my english i have one problem when i open 2 browsers intance and access my perl script instance 1 run script OK instance 2 waiting instance 1 finalize to run :/ i need run simultane 2 instance (modperl 2.0 dev 5 / perl 8 rc 3 / apache 2.0 prefork or worker

Re: while - modperl 2.0/Apache 2.0

2002-07-16 Thread Udlei Nattis
Udlei Nattis wrote: how many servers do you run? worker: IfModule worker.c StartServers 2 MaxClients 150 MinSpareThreads 25 MaxSpareThreads 75 ThreadsPerChild 25 MaxRequestsPerChild 0 /IfModule prefork: IfModule prefork.c StartServers 5 MinSpareServers