-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Poor Preformance #34
Comments
I have noticed a similar issue where some requests would take a long time to load. I have not had the time to dig in deeper, but I think the flushing code simply needs to be fixed. |
For my usage, I can see dramatic speed improvements with the latest commit. |
This is absolutely fantastic news! |
Yes, I published a new NuGet package just now ( |
Still seeing this issue - after start I the following from the debug listener (why are your loggers so complicated?): Waiting for throttle 127.0.0.1 - - [27/Feb/2024:18:22:15 +0000] " " 500 -1 "-" "-" Because the client has closed the connection the stream is dead. This is really bad - the server should not hang like this - I suspect this is due to invalid usage of async/await - you should be running on your own thread, at minimum, for embedding. |
Hello, i am trying to implement a custom web application based on this project.
first of all i want to say that this is a really cool project that is almost perfect for my needs.
however i am facing one major issue, it looks like there is a very high processing time for the http requests.
i am using a rather simple setup with 5 routes set up,.
when i am starting up my app, and the index.html file starts to load (which requires 30 something js and css files) it takes more than 10 seconds to load.
single file requests can take up to 5 and even 10 seconds.
even putting a breakpoint on one of the handlers i can tell that it takes almost a second until the HandleAsync request is called
any idea what is happening here?
The text was updated successfully, but these errors were encountered: