Replies: 1 comment 4 replies
-
On this page: https://gohugo.io/troubleshooting/performance/ MkDocs doesn't have that, the pages are processed sequentially one after another, and there is no caching of elements on the page like the header etc., perhaps only in part some theme templates that don't use the You can see the event flow in this diagram (you need to expand it): https://www.mkdocs.org/dev-guide/plugins/#events As I wrote here you can use the You could get the hook from this comment and see which stage of the build takes the most time, but it will be likely the same as I had in my own benchmarks. The results are as expected when comparing Python and Go at scale. |
Beta Was this translation helpful? Give feedback.
-
I have a medium size doc project containing about 200 md files.
When it was built with mkdocs-material. After several rounds, it generally takes about
3.20
secondsAnd with Hugo, it is a different project folder but with almost the same markdown content, it generally takes about
0.7
seconds.It is testd on a HP laptop : EliteBook 835 13 inch G10 Notebook PC.
Any comments about that?
Beta Was this translation helpful? Give feedback.
All reactions