Is it possible, in my PHP 5.4.0 application (IIS, FastCGI, Non thread safe) for two people to update the same table in the database by running the same code at exactly the same time and inadvertently mess up each other’s data?
The reason I ask is because I see the occasional unexplained data glitch, and in the most recent case I found that another customer updated the same table at exactly the same time.
And part two of my question is if this is indeed happening, how do I prevent it?
They can’t “mess up each others data” because of non-thread safe PHP, no, unless you’re readying/writing Apache settings (e.g. with
SetLocale) or you’ve programmed it to update shared information simultanously (e.g. flat files, as Amadam says).Most normal processes such as MySQL, reading GET parameters etc will not be affected.
So unless your problem is with locales, it’ll be your code, not the thread settings.
If it’s with SetLocale, then transactions or other methods won’t make any difference. Anyhting else you can program round.
You can mess up data if you’ve not programmed for concurrent actions – this can happen in thread safe and non-thread safe. Remember that even in “thread safe” you can have concurrent threads being processed with different speed and orders.
Here is a dangerous example:
The statements could be processed by “User 1” running all, followed by “User 2” (ideal, and how you programmed it). But equally so, “User 1” runs “a” and “b”, followed by “User 2” running all, then “User 1” running “c” – in this case, “User 2” will overwrite what “User 1” wrote.
(To repeat, this is NOTHING to do with “non-thread safe” in PHP.)
How to get around this latter issue:
The third option is the best, if you can. Table locks can get messy and transactions my not fix your issues.