真正解决MySQL批量插入效率问题

1 环境mysql8.0.XX windows10

2 使用

springjdbc.batchUpdate
或者

INSERT INTO sys_device_software(device_id,software_id) VALUES

(#{item.deviceId},#{item.softwareId})

3重点

jdbc:mysql://localhost:3306/chest?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=UTC&rewriteBatchedStatements=true

&rewriteBatchedStatements=true

4测试结论

100记录性能相差60倍以上

你可能感兴趣的:(真正解决MySQL批量插入效率问题)