Changes between Initial Version and Version 1 of Ticket #2445


Ignore:
Timestamp:
01/30/23 09:36:48 (15 months ago)
Author:
zw-byte@…
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #2445 – Description

    initial v1  
    33For 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.
    44
    5 If the number of concurrency is more, it will be worse. how to solve this problem? Thank you.
     5If there is more H2 concurrent streams, it will be worse. how to solve this problem? Thank you.