|
|
|
|
|
by ffsm8
409 days ago
|
|
mklepaczewski was probably talking about end-to-end. I.e. the number you see in the network tab for request duration - whereas the pricing will only care about the time that the application is actually doing something. That basically means it starts after the connection was established by the proxy (cloudflare) and terminates before the response is delivered to the client. Doing the whole round trip within 65ms is actually pretty challenging, even if you are requesting over the wire. It would mean you have maybe 10-20 Ms to query data from the database and process them to html or json. Any kind of delay while querying the database is going to ruin that. If you had a 65ms in the application, you would probably get a round trip average of something above 90, likely closer to 150 then 90. |
|
If you cache the response yourself (or use nginx), the server should be responding to queries in <1ms.