Re: [PHP] Thread Safe?

2010-02-15 Thread Robert Cummings
Hi David, Install the non-thread safe version and run it in conjunction with FastCGI. You may also be interested in looking into WinCache for PHP. Non-thread safe works best with FastCGI, running PHP as an ISAPI module is NOT recommended. Cheers, Rob. David Stoltz wrote: Hi all, I'm ins

Re: [PHP] Thread safe

2002-05-29 Thread Ed Gorski
rning a valid ID no for each of them...Its > basically > > the old chopsticks puzzle and would like to know how does PHP handle it? > > -Ryan. > > > > - Original Message - > > From: "Miguel Cruz" <[EMAIL PROTECTED]> > > To: "

Re: [PHP] Thread safe

2002-05-28 Thread Miguel Cruz
t; the old chopsticks puzzle and would like to know how does PHP handle it? > -Ryan. > > - Original Message - > From: "Miguel Cruz" <[EMAIL PROTECTED]> > To: "r" <[EMAIL PROTECTED]> > Sent: Tuesday, May 28, 2002 12:52 PM > Subject: Re: [P

Re: [PHP] Thread safe

2002-05-28 Thread Miguel Cruz
On Mon, 27 May 2002, r wrote: > In java servlets I used to use a "synchronised" block of code to make sure > it was thread safe...how do i do this in PHP? > > Heres what should be thread safe > > { > $r=select max(cno)+1 from MyTable; > (then i insert into the table the new cno plus my name) > i