Re: Connection pooling in Apache2.2

2005-12-08 Thread Stas Bekman
o if someone wants to pick up where I've left that would be wonderful. I will help to get you up to speed up to where I've left. -- _____ Stas Bekman mailto:[EMAIL PROTECTED] http://stason.org/ MailChannels: Assured Messaging(TM)

Re: Proxy: (Fwd) [patch] make Storable thread-safe

2004-01-19 Thread Stas Bekman
ved mysteries in mp2 connected to the perl_clone issue, as they happen only on win32 and i'm running on linux, I'm not very advancing at guessing the cause. ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacke

Re: [perl #24463] DBI tests fail with perl 5.8.2 and -Duseithreads -Dusemultiplicity -Duse64bitint

2003-11-15 Thread Stas Bekman
Nicholas Clark wrote: On Thu, Nov 13, 2003 at 12:01:22PM -0800, Stas Bekman wrote: Well, I suggested that patch so I -Dm -Mthreads won't segfault :( Can you think of a test that would have detected a breakage? Tests for threads very welcome. I didn't ask whether tests are welcome

Re: [perl #24463] DBI tests fail with perl 5.8.2 and -Duseithreads -Dusemultiplicity -Duse64bitint

2003-11-13 Thread Stas Bekman
f the wrong contexts :( ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com

Re: Perl SDK?

2002-06-11 Thread Stas Bekman
bundle you may do: % perl -MCPAN::DistroBuilder -webuild DBI-SDK 0.1 DBI Apache::DBI ... For more info see: http://search.cpan.org/search?mode=module&query=CPAN%3A%3ADistroBuilder ______ Stas BekmanJAm_pH --> Jus

Re: [PATCH scope.c] Re: local($tied->{foo}) leaks

2002-05-05 Thread Stas Bekman
ue of the element doesn't actually get stored in the array/hash >>when there's tying going on. So it doesn't get freed at the end of the >>block. Great! I've verified that it works with Apache::Leak. Thanks! Will this be fixed in 5.6.2, too? (when 5.6.2 is sched

Re: local($tied->{foo}) leaks (was: Apache::DBI and $dbh attributes)

2002-05-02 Thread Stas Bekman
Tim Bunce wrote: > On Thu, May 02, 2002 at 07:03:06PM +0800, Stas Bekman wrote: > >>>>Is it possible to simply localize the hash elements? Will this work >>>>properly? >>>> >>>> { >>>> my $dbh = DBI->connect(@connec

Re: Apache::DBI and $dbh attributes

2002-05-02 Thread Stas Bekman
Tim Bunce wrote: > On Thu, May 02, 2002 at 04:56:02PM +0800, Stas Bekman wrote: > >>Tim Bunce wrote: >> >> >>>>>>to take this a step further, what would be really DWIMy is for DBI to clear all >of the >>>>>>$dbh attributes not spec

Re: Apache::DBI and $dbh attributes

2002-05-02 Thread Stas Bekman
print "LongReadLen is: ", $dbh->{LongReadLen}, "\n"; local $dbh->{LongReadLen} = 40; print "LongReadLen is now: ", $dbh->{LongReadLen}, "\n"; } my $dbh = DBI->connect(@connect) || die $DBI::errstr; print "LongRead

Re: Apache::DBI and $dbh attributes

2002-04-30 Thread Stas Bekman
can override the STORE method and > track attribute changes itself. That sounds like a good solution. Edmund? I raised this issue, since in the mod_perl book Eric and I are working on, we say that the connect string shouldn't change in order to be able to reuse connections. I gues