猿问

在高并发环境下,用PHP向MySQL5.5写入记录,如何返回刚插入的记录的id?

在高并发环境下,用PHP向MySQL5.5写入记录,如何返回刚插入的记录的id?

高并发
高并发
高并发

如何返回当前插入的那条记录的id?
MySQL版本是5.5

千巷猫影
浏览 537回答 4
4回答

皈依舞

高并发情况就不应该直接写入数据库,应该先给数据生成一个具有唯一性的hash值,然后写入到缓存。同时给客户端返回的是hash值。 再将缓存数据异步写入到数据库。 通过hash值去查数据库就能解决。

千万里不及你

SELECT LAST_INSERT_ID(); The ID that was generated is maintained in the server on a per-connection basis. This means that the value returned by the function to a given client is the first AUTO_INCREMENT value generated for most recent statement affecting an AUTO_INCREMENT column by that client. This value cannot be affected by other clients, even if they generate AUTO_INCREMENT values of their own. This behavior ensures that each client can retrieve its own ID without concern for the activity of other clients, and without the need for locks or transactions.

蝴蝶不菲

mysql_insert_id(), 高并发下也是可用的.

冉冉说

mysqli:mysqli_insert_id()mysql:mysql_insert_id()
随时随地看视频慕课网APP
我要回答