Hi @David Thielen ,
It's a normal behavior in your project, we don't need to speed it up.
I found you are using LongPolling
in your blazor project, that why we can see a lot of (fetch) http requests like [https://localhost:7043/_blazor?id=Iwns6](https://localhost:7043/_blazor?id=Iwns6IpNs2UkqNaIq6Xe_Q&_=1719383611048)_[pNs2UkqNaIq6Xe_Q&_=1719383611048](https://localhost:7043/_blazor?id=Iwns6IpNs2UkqNaIq6Xe_Q&_=1719383611048)
_.
In SignalR, there are three protocols: WebSocket(Default), LongPolling, and ServerSentEvents.
If we are using websocket, we can find the behavior like below. You can verify it by creating a brand new project.
_blazor?id=Iwns6IpNs2UkqNaIq6Xe_Q&_= ***
It means that the front-end
and back-end
keep communicating, and 1.5min should be the browser's default behavior or configuration for LongPolling.
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.
Best regards,
Jason