1
I’m doing a performance analysis job where I did a js script that performs the following steps:
1: run 1000 Inserts after 2000 and so on.
2: I update 500 Inserts after 1000, among other CRUD functions.
I wonder if there is how I collect the running time for then I extract and play on a graph and manipulate.
If yes where can I find these records?
Summing up I would like to take the time that it shows right after we perform a direct operation in the bank as the following:
mysql> INSERT INTO myset (col) VALUES ('a,d,d,s');
Query OK, 1 row affected, 1 warning (0.03 sec)
in the case of an insert 0.03 sec would like to take my 1000 Inserts and so on, there is some log where this is recorded?