How to improve INSERT performance on a very large MySQL table
问题 I am working on a large MySQL database and I need to improve INSERT performance on a specific table. This one contains about 200 Millions rows and its structure is as follows: (a little premise: I am not a database expert, so the code I've written could be based on wrong foundations. Please help me to understand my mistakes :) ) CREATE TABLE IF NOT EXISTS items ( id INT NOT NULL AUTO_INCREMENT, name VARCHAR(200) NOT NULL, key VARCHAR(10) NOT NULL, busy TINYINT(1) NOT NULL DEFAULT 1, created