4 回答
TA贡献1851条经验 获得超3个赞
高并发情况就不应该直接写入数据库,应该先给数据生成一个具有唯一性的hash值,然后写入到缓存。同时给客户端返回的是hash值。
再将缓存数据异步写入到数据库。
通过hash值去查数据库就能解决。
TA贡献1784条经验 获得超9个赞
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.
- 4 回答
- 0 关注
- 536 浏览
添加回答
举报