-
Notifications
You must be signed in to change notification settings - Fork 4
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
Read through the nginx code and figure out why it's faster #10
Comments
Note: this is only for large files, we're within a factor of 2 for small requests but we're behind by 3 orders of magnitude for large files. I'm seeing |
This was an error on my part - my nginx config was set up wrong so it was serving a 404 on every page, which understandably is significantly faster than sending back 7 megs of binary. We're down to a factor of three difference (yay!) |
Down to factor of 2 with #13. Nginx for a 22MB file:
We're hovering around 1100, see #13 for details |
|
We could also look into thread pools and see if that makes a difference. That does mean implementing proper semaphores. |
No description provided.
The text was updated successfully, but these errors were encountered: