Insertion speed slowdown as the table grows in mysql

前端 未结 3 1765
天涯浪人
天涯浪人 2021-02-04 17:33

I am trying to get a better understanding about insertion speed and performance patterns in mysql for a custom product. I have two tables to which I keep appending new rows. The

3条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-02-04 18:05

    Verifying that the insert doesn't violate a key constraint takes some time, and that time grows as the table gets larger. If you're interested in flat out performance, using LOAD DATA INFILE will improve your insert speed considerably.

提交回复
热议问题