At every page load a crawl is being done by the plugin with the following function:
Smartcrawl_OnPage->smartcrawl_head() | wpmu-dev-seo/includes/tools/onpage.php:303 | 10.2949s
The page load time has increased to 15-20seconds. Server support followed up with the following:
We see in the hook_time that the plugin is eating 16s in the example below:
+
+
+
+
+
+
+
+
+
+
+
+
| stage | time | query_time | query_count | cache_ratio | cache_hits | cache_misses | hook_time | hook_count | request_time | request_count |
+
+
+
+
+
+
+
+
+
+
+
+
| bootstrap | 0.5683s | 0.0132s | 64 | 86.91% | 664 | 100 | 0.1988s | 5465 | 0s | 0 |
| main_query | 0.9699s | 0.0047s | 8 | 84% | 105 | 20 | 0.9673s | 58071 | 0s | 0 |
| template | 16.821s | 0.117s | 132 | 99.4% | 31199 | 188 | 16.797s | 210504 | 0s | 0 |
+
+
+
+
+
+
+
+
+
+
+
+
| total (3) | 18.3592s | 0.1349s | 204 | 90.1% | 31968 | 308 | 17.9631s | 274040 | 0s | 0 |
+
+
+
+
+
+
+
+
+
+
+
+
The SmartCrawll is bypassing caching completely, and it cannot serve out of cache the result is 100 CPU usage and a lot of RAM usage.