Optimize HEAD requests for stats endpoint#592
Open
softko wants to merge 3 commits intotinyproxy:masterfrom
Open
Optimize HEAD requests for stats endpoint#592softko wants to merge 3 commits intotinyproxy:masterfrom
softko wants to merge 3 commits intotinyproxy:masterfrom
Conversation
- Add http_method field to connection structure to store HTTP method - Store HTTP method during request processing for later use - Skip response body generation and transmission for HEAD requests to stats endpoint - Maintain full functionality for GET requests - Reduces I/O overhead and network traffic for HEAD requests - Improves RFC compliance by properly handling HEAD method semantics This change ensures HEAD requests to the stats endpoint return appropriate headers without the response body, reducing unnecessary file I/O and network overhead while maintaining backward compatibility.
rofl0r
reviewed
Dec 15, 2025
src/conns.h
Outdated
| char *request_line; | ||
|
|
||
| /* The HTTP method from the request line */ | ||
| char *http_method; |
Contributor
There was a problem hiding this comment.
it's inefficient and error-prone to use heap-allocated strings to store a single boolean flag "is_head_method". if we cared about the method type elsewhere, we could use "enum http_method" but since we don't that would be overkill for the moment. so just use an int or char set to TRUE or FALSE like we do elsewhere in order not to pull in dependencies on stdbool.h.
Author
There was a problem hiding this comment.
thank you for your feedback, also changed the returning headers sooner to avoid stats file processing at all
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Optimize HEAD requests for the stats endpoint by skipping response body generation and transmission while maintaining full functionality for GET requests.
Changes
http_methodfield to connection structure to store HTTP methodBenefits
Testing
This addresses the performance optimization opportunity where HEAD requests were previously processing and sending the full response body unnecessarily.