Re: How to do connection pooling

2002-02-28 Thread Joachim Zobel

At 02:11 280202 +0530, you wrote:
Hi all,
How can I maintain the connections in perl? For this I want to use 
connection pooling to contol the traffic of my site How can I do this in 
perl? Can anybody help me in this regard? If possible please give the 
steps included in this

Is Apache::DBI what you need? If not, why?  It is in fact not about 
controlling traffic, its about reusing database connections to sve the time 
needed for a connect

Sincerely,
Joachim

--
 ein Geschlecht erfinderischer Zwerge, die fuer alles gemietet werden
koennen- Bertolt Brecht - Leben des Galilei




RE: How to do connection pooling

2002-02-28 Thread Stathy G. Touloumis

Are you perhaps referring to KeepAlive of the TCP/IP client connection?

 How can I maintain the connections in perl? For this I want to use 
 connection pooling to contol the traffic of my site How can I 
 do this in 
 perl? Can anybody help me in this regard? If possible please give the 
 steps included in this
 
 Is Apache::DBI what you need? If not, why?  It is in fact not about 
 controlling traffic, its about reusing database connections to 
 sve the time 
 needed for a connect




Re: How to do connection pooling

2002-02-28 Thread Tom Hukins

On Thu, Feb 28, 2002 at 09:38:39PM +0100, Joachim Zobel wrote:
 At 02:11 280202 +0530, you wrote:
 Hi all,
 How can I maintain the connections in perl? For this I want to use 
 connection pooling to contol the traffic of my site How can I do this in 
 perl? Can anybody help me in this regard? If possible please give the 
 steps included in this
 
 Is Apache::DBI what you need? If not, why?  It is in fact not about 
 controlling traffic, its about reusing database connections to sve the time 
 needed for a connect

There was a discussion of database pooling and reusing DBI connections
on Perl Monks today:
http://perlmonksorg/indexpl?node_id=148233

Tom



How to do connection pooling

2002-02-27 Thread A.C.Sekhar



Hi all,
How can I maintain the connections in perl? For 
this I want to use connection pooling to contol the traffic of my site. How can 
I do this in perl? Can anybody help me in this regard? If possible please give 
the steps included in this. 

Thanks and Regards
A C Sekhar



Re: How to do connection pooling

2002-02-27 Thread Dave Hodgkinson

A.C.Sekhar [EMAIL PROTECTED] writes:

 Hi all,
 
 How can I maintain the connections in perl? For this I want to use connection
 pooling to contol the traffic of my site. How can I do this in perl? Can
 anybody help me in this regard? If possible please give the steps included in
 this.

Use a two-tier Apache and restrict MaxClients on the back-end.

-- 
Dave Hodgkinson, Wizard for Hire http://www.davehodgkinson.com
Editor-in-chief, The Highway Starhttp://www.thehighwaystar.com
   Interim Technical Director, Web Architecture Consultant for hire



Re: How to do connection pooling

2002-02-27 Thread Perrin Harkins

A.C.Sekhar wrote:
 How can I maintain the connections in perl?

Which connections?  Connections to a database?  A web browser? 
Something else?

- Perrin