Mysql Slow Insert

后端 未结 6 627
别那么骄傲
别那么骄傲 2021-02-07 22:17

I have the following InnoDB table:

+-----------+-----------+------+-----+-------------------+----------------+
| Field     | Type      | Null | Key | Default             


        
6条回答
  •  旧巷少年郎
    2021-02-07 22:55

    If you're inserting into a table in large dense bursts, it may need to take some time for housekeeping, e.g. to allocate more space for the table and indexes.

    If don't want your app to wait, try using INSERT DELAYED though it does have its downsides.

提交回复
热议问题