[PHP] Thread Safe?

2010-02-15 Thread David Stoltz
Hi all, I'm installing 5.3.1 on my Windows Server with IIS6. Should I choose VC9 x86 Thread Safe or non-thread safe ? What is the difference? Thanks!

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

[PHP] Thread Safe?

2009-11-20 Thread David Stoltz
Forgot to ask: On the Windows download page, there are options like: VC9 Thread Safe VC9 Non-Thread Safe VC6 Thread Safe ...etc What is the VC, and what is thread safe? Thanks! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Thread safe

2002-05-29 Thread Ed Gorski
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: [PHP] Thread safe Well, that's not a thread safety issue if you're trying to lock a record

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) insert into

Re: [PHP] Thread safe

2002-05-28 Thread Miguel Cruz
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: [PHP] Thread safe Well, that's not a thread safety issue if you're trying to lock a record

[PHP] Thread safe

2002-05-27 Thread r
Hi, 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) insert into mytable ($r,'myname'); } How to do