I need to make some performance improvements on a web site and made some major improvements, but now I stuck with a strange problem.
When cached, my starting page only needs to load one element (the "root document") - but then it needs some time until it's rendered completely:

The elements following are things loaded asynchronous via JavaScript.
Two questions:
- why does it take so "long" from loading the root document until the DomContentLoaded-event?
- does it make sense to load some not so important things asynchronous? I mean - is it important to have the DmoContentLoaded-event as early as possible? Unfortunately there's not much documentation about that event, but I don't think it's the moment when the page is displayed, is it?
Thanks a LOT for all your help and answers,
Stefan