Re: mod_perl and mySql

2003-01-06 Thread Rodney Broom
From: Chris Faust <[EMAIL PROTECTED]> > Thanks Paul, that tells me to stop going crazy over it at least :).. Yeah, don't go crazy. I didn't see this in the thread, so I'll include it; a snippet from the Apache::DBI docs: PerlModule Apache::DBI # this comes before all other modules using DB

RE: mod_perl and mySql

2003-01-05 Thread Chris Faust
>> Glad to hear that about MPW; thanks. Its the truth, those 2 books have really saved my butt more then once - so it should be me thanking you!!. >> Regarding use of persistent connections, I wonder if you really need >> them. To give an example from another language, PHP offers >> mysql_connec

Re: mod_perl and mySql

2003-01-05 Thread Paul DuBois
At 7:55 -0500 1/5/03, Chris Faust wrote: Hello Group, Due to ever increasing traffic I'm converting my site into mod_perl and quite honestly I'm confused about persistent DB connection and DB connection pooling.. I know there is tons of info out there on the goggle groups and on perl.apache.com,

RE: mod_perl and mySql

2003-01-05 Thread Haapanen, Tom
ssage- From: Michael Bacarella [mailto:[EMAIL PROTECTED]] Sent: Sunday, 05 January, 2003 11:40 To: Chris Faust Cc: MySql Mailing List Subject: Re: mod_perl and mySql Are you sure it would help? MySQL is damn fast at taking connections. When we converted to mod_perl I made a mental note to swit

RE: mod_perl and mySql

2003-01-05 Thread Chris Faust
Michael Bacarella [mailto:[EMAIL PROTECTED]] >> Sent: Sunday, January 05, 2003 11:40 AM >> To: Chris Faust >> Cc: MySql Mailing List >> Subject: Re: mod_perl and mySql >> >> >> Are you sure it would help? MySQL is damn fast at taking connections. >> >

Re: mod_perl and mySql

2003-01-05 Thread Mark
- Original Message - From: "Chris Faust" <[EMAIL PROTECTED]> To: "MySql Mailing List" <[EMAIL PROTECTED]> Sent: Sunday, January 05, 2003 1:55 PM Subject: mod_perl and mySql > For example I've read > a bunch of posts where people said to d

Re: mod_perl and mySql

2003-01-05 Thread Michael Bacarella
Are you sure it would help? MySQL is damn fast at taking connections. When we converted to mod_perl I made a mental note to switch to persistent connections. It turns out that it still ran fast enough even though every hit results in an RDBMS connection. And at this point we're doing 5M of them p

mod_perl and mySql

2003-01-05 Thread Chris Faust
Hello Group, Due to ever increasing traffic I'm converting my site into mod_perl and quite honestly I'm confused about persistent DB connection and DB connection pooling.. I know there is tons of info out there on the goggle groups and on perl.apache.com, I also picked up "Mod_Perl Developers cook