I have a really small script that takes some parameters from the request headers and sends a single INSERT
query to a db hosted on localhost.
The DB has one table and I do not run any kind of reporting or anything, so basically 100% of the queries to this server are INSERT
queries.
The script is being heavily accessed so I get a lot of these queries running concurrently.
I'm looking for ways to tweak the config file to support my specific needs.
EDIT
I'm currently seeing these variables on phpMyAdmin->status that seems high:
Slow_queries 22
Handler_read_rnd 1,496 k
Handler_read_rnd_next 111M
Created_tmp_disk_tables 495
Sort_merge_passes 77
Opened_tables 332
Table_locks_waited 154
The reason I'm asking is because I'm going to get a lot more concurrent connections soon and I want to make the tweaks before so the server can handle it.