Is there a way/tool/technique to calculate the processor and memory cost of a specific MySQL query?
1 Answer
Check this sample:
2 Comments
Lashae
Same page states that > MEMORY is not currently implemented I need a way to profile memory cost as well as the cpu.
johannes
SHOW PROFILES is deprecated, you can get better data with modern versions of MySQL using performance schema dev.mysql.com/doc/refman/5.7/en/performance-schema.html
explainor not, and if so, what you find lacking about it. It may not give what you want, but if you haven't tried it, it's usually the first thing to try.