Reputation: 181
It's for mysql. In mysql, the default shows in seconds. I want the time unit to be accurated to milliseconds.
Upvotes: 1
Views: 134
Reputation: 78413
Personally I tend to find it a better thing to do at the app level. A query can be slow for a multitude of reasons:
If you log the complete query time as seen by the app, you spot more bottlenecks.
Upvotes: 1
Reputation: 10066
Check the link http://webmonkeyuk.wordpress.com/2011/04/18/mysql-servers-built-in-profiling-support/
Upvotes: 1