Re: [Catalyst] How receive signals from FCGI::ProcManager?

2011-01-14 Thread Jon Schutz
On 12/23/2010 06:28 AM, rimas rimas wrote: > > Hello! > > Some components of my application require accurate de-initialization > to avoid resource leaks. I using Catalyst which running under > FastCGI(ProcManager) and looking for possibility get notification that > application is restarting or sh

Re: [Catalyst] How receive signals from FCGI::ProcManager?

2011-01-14 Thread Oleg Kostyuk
May be better to ask on kiev.pm? ;) 2010/12/22 rimas rimas : > > Hello! > > Some components of my application require accurate de-initialization to > avoid resource leaks. I using Catalyst which running under > FastCGI(ProcManager) and looking for possibility get notification that > application i

RE: [Catalyst] Zeus and Catalyst

2011-01-14 Thread Duncan Garland
Thanks -Original Message- From: Tomas Doran [mailto:bobtf...@bobtfish.net] Sent: 14 January 2011 13:03 To: The elegant MVC web framework Subject: Re: [Catalyst] Zeus and Catalyst On 14 Jan 2011, at 11:02, Duncan Garland wrote: > However, the whole mode of operation of the system has cha

Re: [Catalyst] Zeus and Catalyst

2011-01-14 Thread Tomas Doran
On 14 Jan 2011, at 11:02, Duncan Garland wrote: However, the whole mode of operation of the system has changed and there has been a performance hit. When a request arrives, we get multiple catalyst processes spawned. These hang around for a while, handle the request and die within a coupl

RE: [Catalyst] Zeus and Catalyst

2011-01-14 Thread Duncan Garland
Hi, It's beginning to look like this might be a problem with the way the concurrency of the fastcgi processes is configured. Most of our other fastcgi scripts handle their own concurrency and start with something like this: for (my $i = 0; $i < 10; $i++) { if (fork() == 0) { last;