AI-powered
podcast player
Listen to all your favourite podcasts with AI-powered features
What Kinds of Things Could Take a Long Time on the Server?
When you have a slow server request, your dev tools will tell you how long it takes to wait for a response from the server. Another thing to think about with slow server generation times could be concurrent requests. If you are running maybe two database requests and they don't rely on each other, then you can run them concurrently at the same time. And that is pretty easy to do with promise.all or promise.all settled.