Ben PDO ve MySQL iç işleyişini% 100 değilim itiraf edeceğiz, bu yüzden benim soru daha anlaşılır kılmak için bir örnek vereceğim.
Ben PHP ve veritabanları öğrenmek için eğlenceli bir yol olduğunu düşünüyorum, çünkü ben, oldukça ham tarayıcı tabanlı strateji oyunu yapıyorum. Ben oldukça beklenmedik hata rastladım ben bug-test savaş komut oldu. Ben böyle bir şey arıyor, bir script her dakika aramak için Cron Jobs kullanın:
$ Sql = "gelişi = 0 activearmy DAN army_id SELECT;";
foreach($dbh->query($sql) as $row)
{
battleEngine($row["army_id"]);
}
Temel hesaplamalar (ordusunu savunan vs ordusu saldırıyor) yapılır, veritabanında altı tablo güncellenir. Ben yüz sorun ben aynı dakika içinde aynı hedefe çeşitli saldırılar, bu saldırıların her şimdi ve sonra bir tane eski veritabanı bilgi almak yaparken (bir ekstrem durumda, saldırı # 10 # 5. saldırı olarak aynı tablo getirilen) olduğunu .
Ben komut veritabanı daha hızlıdır çünkü bu olur tahmin ediyorum? Ilgili tüm bilgilerin bir sonraki $ satır ile işlevini yinelenen önce yerinde kadar beklemek PHP zorlamak için bir yolu var mı?
EDIT: Emil is probably correct. I can't make sure though as it seems impossible for my PDO to stay open long enough for me to pass several statements between beginTransaction() and commit(). However, a dirty read seems odd since I'm using InnoDB with "REPEATABLE READ". Some Googling suggest that REPEATABLE READ will make dirty reads impossible. After contemplating how to kill myself for a while, I opted for a hack instead. For now, I put an UPDATE for a special value on top of my script, and another at the end of the big batch (about six UPDATE statements) at the bottom. Before running the function, I've put up a while()-loop which checks if that special value is set to 0. If it's not, it sleeps for 0.01 seconds and try again. Looking at the output, the while loop repeats an average of two times, suggesting it might actually be working? It hasn't failed yet, but it might be because it's not peak hour. I'll try again at regular intervals tomorrow. I know no-one cares about all this, but I felt I should make this update just in case. =P