While trying to debug another issue on my website, I turned on debugging in Joomla, which I had never done before.
To my surprise, it prints out all MySQL queries and lists how many duplicates there are. I was astonished to see the same query running 19 times on each page load and the query was coming from the Komento code.
The query is:
SELECT COUNT('1') AS `total`
FROM `jos3_komento_comments`
WHERE `published` = '1';
I wasn't able to fine much else online with regards to this issue other than this one page:
https://code.google.com/p/getk2/issues/detail?id=540
Has this issue been investigated? It's certainly adding a lot of unnecessary overhead, isn't it?