框架程式碼
$db = new db(.....);
// 增加監聽,當資料庫執行後會自動記log
$db->attach(function ($sql,$bind){$di->dblog('執行sql:'.$sql.$bind);} )
// 插入一條資料
$db->execute("insert into user values .....")
現象 :
然而我們發現資料本來應該立即插入,但是發現10分鐘之後資料才插入進去(靠binlog和dblog算出來的)。
疑問 :
難道pdo的execute函數是非阻塞的?照理說日誌上打的時間就應該是資料插入的真實時間啊,為什麼實際10分鐘之後才寫入到資料庫呢,而且是網卡伺服器壓力大才會出現。 。 。 。