Changes between Initial Version and Version 1 of Ticket #2445
- Timestamp:
- 01/30/23 09:36:48 (23 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #2445 – Description
initial v1 3 3 For example, when Nginx’s maximum concurrent streams is 128, if the client sends 128 requests at the same time, nginx will receive 128 requests, and will process 128 requests in one event callback (function ngx_http_v2_read_handler).It’s about 20 milliseconds to processing 128 requests, which means that other connection events will be delayed by 20 milliseconds. 4 4 5 If the number of concurrency is more, it will be worse. how to solve this problem? Thank you.5 If there is more H2 concurrent streams, it will be worse. how to solve this problem? Thank you.