Ok, still tuning the server...the results are looking good.
I was able to tweak MYSQL and cut the time in half, see new results:
1st load: Parse Time: 22.887 - Number of Queries: 83882 - Query Time: 17.623978111648
2nd load: Parse Time: 21.213 - Number of Queries: 83883 - Query Time: 16.348378189011
#############
## WHAT I DID ##
#############
Need to edit MY.CNF file usally located at /etc/my.cnf on a server.
*** VERY IMPORTANT YOU MUST RESTART MYSQL AFTER YOU MAKE A CHANGE TO THE FILE OR IT WILL NOT TAKE AFFECT!
Here is a copy of mine, hope it helps someone!
[mysqld]
skip-innodb
skip-locking
max_connections=40
set-variable = innodb_buffer_pool_size=7M
set-variable = innodb_additional_mem_pool_size=1M
query_cache_type=1
query_cache_limit=1M
query_cache_size=32M
table_cache=512
thread_cache=32
key_buffer=128M
If anyone improves the above settings please post it here, I have just begun learning to tweak MYSQL, so I know it can be imporoved more!




