RE: Jumping out of Apache/mod_perl..

2003-12-09 Thread Jim Morrison [Mailing-Lists]
o: Stas Bekman > Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED] > Subject: Re: Jumping out of Apache/mod_perl.. > > > Stas Bekman wrote: > > Cees Hek wrote: > > > >> Using fork is expensive. It will use up as much memory as the > >> current > >>

Re: Jumping out of Apache/mod_perl..

2003-12-05 Thread Cees Hek
Stas Bekman wrote: Cees Hek wrote: Using fork is expensive. It will use up as much memory as the current child is already using, so you might as well just use the current child to finished the processing. That will work only if you care to wait for all processes to finish untill you can restar

Re: Jumping out of Apache/mod_perl..

2003-12-05 Thread Stas Bekman
Cees Hek wrote: Jim Morrison [Mailing-Lists] wrote: Hello, Not sure if this isn't slightly OT, but wonder if someone can help.. It seems on topic to me... I have a piece of one of my mod_perl apps that potentially takes quite a while to complete. What I would like to do is to get Apache/mod_p

Re: Jumping out of Apache/mod_perl..

2003-12-05 Thread Charles C. Fu
In <[EMAIL PROTECTED]> on 05 Dec 2003, Cees Hek <[EMAIL PROTECTED]> wrote: > Using fork is expensive. It will use up as much memory as the > current child is already using, so you might as well just use the > current child to finished the processing. In most OSes, fork just sets the memory to

Re: Jumping out of Apache/mod_perl..

2003-12-05 Thread Cees Hek
Jim Morrison [Mailing-Lists] wrote: Hello, Not sure if this isn't slightly OT, but wonder if someone can help.. It seems on topic to me... I have a piece of one of my mod_perl apps that potentially takes quite a while to complete. What I would like to do is to get Apache/mod_perl to start a seco

Re: Jumping out of Apache/mod_perl..

2003-12-05 Thread Larry Leszczynski
On Fri, 5 Dec 2003, Jim Morrison [Mailing-Lists] wrote: > I have a piece of one of my mod_perl apps that potentially takes quite a > while to complete. What I would like to do is to get Apache/mod_perl to > start a second process which would do the work, return a page to the > user, and get on wi

Re: Jumping out of Apache/mod_perl..

2003-12-05 Thread Christian Wetzig
Jim Morrison [Mailing-Lists] wrote: I have a piece of one of my mod_perl apps that potentially takes quite a while to complete. What I would like to do is to get Apache/mod_perl to start a second process which would do the work, return a page to the user, and get on with the next thing.. I just d

Re: Jumping out of Apache/mod_perl..

2003-12-05 Thread Ken Corey
> On Fri, 2003-12-05 at 15:09, Jim Morrison [Mailing-Lists] wrote: > > I have a piece of one of my mod_perl apps that potentially takes quite a > > while to complete. What I would like to do is to get Apache/mod_perl to > > start a second process which would do the work, return a page to the > >