Kulasekaran, Raja wrote:
> The below method used to kill the child process after the successful
> execution of web request.
>
> $r->child_terminate();
>
> Can anyone suggest me where and how do I call this method in the
> httpd.conf file.
You don't, you put it in your application code.
However yo
ber 29, 2009 7:36 PM
To: Perrin Harkins
Cc: mod_perl list
Subject: RE: mod-perl child process
Hi,
The below method used to kill the child process after the successful
execution of web request.
$r->child_terminate();
How do I get the status that particular child process has been killed
remove my email from list.
Thanks and regards,
Sudhakar Avirneni,
ph)6786228961
> Date: Thu, 29 Oct 2009 10:48:05 -0400
> Subject: Re: mod-perl child process
> From: phark...@gmail.com
> To: raja.kulaseka...@netapp.com
> CC: modperl@perl.apache.org
>
> On Thu, Oct
On Thu, Oct 29, 2009 at 10:05 AM, Kulasekaran, Raja
wrote:
> How do I get the status that particular child process has been killed ?
Are you talking about the exit status of the process? You can't get
that. What are you trying to do?
- Perrin
ent: Wednesday, October 28, 2009 10:02 AM
To: Perrin Harkins
Cc: mod_perl list
Subject: RE: mod-perl child process
So, How to I control this ?. Is it possible to reuse the existing
connection ?.
Raja
-Original Message-
From: Perrin Harkins [mailto:phark...@gmail.com]
Sent: Tuesday, October
On Wed, Oct 28, 2009 at 12:32 AM, Kulasekaran, Raja
wrote:
> So, How to I control this ?. Is it possible to reuse the existing
> connection ?.
It should be doing that already. Each process will open one
connection and keep it open (unless you use different connection
parameters, like a different
So, How to I control this ?. Is it possible to reuse the existing
connection ?.
Raja
-Original Message-
From: Perrin Harkins [mailto:phark...@gmail.com]
Sent: Tuesday, October 27, 2009 11:47 PM
To: Kulasekaran, Raja
Cc: mod_perl list
Subject: Re: mod-perl child process
On Tue, Oct
On Tue, Oct 27, 2009 at 8:33 AM, Kulasekaran, Raja
wrote:
> I have configured the mod_perl with oracle persistent connection through
> Apache::DBI module. On every web page request It creates a process
> something like below and It never be killed automatically when the request
> has completed.
Hi,
I have configured the mod_perl with oracle persistent connection through
Apache::DBI module. On every web page request It creates a process
something like below and It never be killed automatically when the request has
completed.
Can you please suggest me how to do I handle this scenario