Re: File Handle Issues in Mod_Perl 2.0

2007-05-24 Thread Perrin Harkins
Justin, My main question is why would it work differently from mod_perl 1.0 to 2.0? This doesn't sound like something that mod_perl would affect. Do you have different versions of perl, or different OSes, for these two mod_perl servers? - Perrin

RE: File Handle Issues in Mod_Perl 2.0

2007-05-22 Thread Justin Luster
t: Monday, May 21, 2007 9:56 PM To: Justin Luster Cc: modperl@perl.apache.org Subject: Re: File Handle Issues in Mod_Perl 2.0 What kind of errors specifically are you getting? Justin Luster wrote: > I'm not closing the file on purpose to try and simulate an error > condition. My main q

Re: File Handle Issues in Mod_Perl 2.0

2007-05-21 Thread Foo JH
ailto:[EMAIL PROTECTED] Sent: Sunday, May 20, 2007 7:15 PM To: Justin Luster Cc: modperl@perl.apache.org Subject: Re: File Handle Issues in Mod_Perl 2.0 Could be some internal optimsation issue. But I'd say that your best bet is to really close the file after you're done with it, and

RE: File Handle Issues in Mod_Perl 2.0

2007-05-21 Thread Justin Luster
er Cc: modperl@perl.apache.org Subject: Re: File Handle Issues in Mod_Perl 2.0 Could be some internal optimsation issue. But I'd say that your best bet is to really close the file after you're done with it, and not let it hang around. This so especially when you are expecting multiple thr

Re: File Handle Issues in Mod_Perl 2.0

2007-05-20 Thread Foo JH
Could be some internal optimsation issue. But I'd say that your best bet is to really close the file after you're done with it, and not let it hang around. This so especially when you are expecting multiple threads/ processes accessing the same file. Justin Luster wrote: Hi, A while back I

File Handle Issues in Mod_Perl 2.0

2007-05-18 Thread Justin Luster
Hi, A while back I posted an issue that I was having with mod_perl 2.0 regarding file handles. Today I found an interesting clue to the problem. In my test script below I'm opening the same file twice in a row on purpose without closing it. I'm trying to replicate a possible error condition w