I m writing a website, and in my tests, I found each page need at least 100ms to render(total rendering time). The page is simple, and only a few queries to mongodb (There are only several records in mongodb). Is 100ms too long? What s the normal time?
<>>>>>
The time is calculated in the server-side, from getting the request
, to response.flush
. And only one user and one thread to request it. I just found the problem should be in mongodb
, it cost nearly 80ms of 100ms.
回答问题: 你们认为,一个正常的网页需要多少时间?