You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How can I disable the HTTP/2 dynamic table? I would like to prevent to caching of headers so that the full header content has to be sent on the wire each time, not just the index to the dynamic table. I've tried playing with the "self.max_allowed_table_size" value, but I haven't gotten it to work.
The text was updated successfully, but these errors were encountered:
Thanks for the pointer. Do you know where I should look to communicate with the HTTP/2 protocol? And how that could be exposed when I'm creating an HTTP20Connection object?
E.g., what I'm trying to do is:
from hyper import HTTP20Connection
connection = HTTP20Connection(f'{ip_port}')
Then I want to either disable the dynamic table completely or be able clear it on demand. I was hoping hpack was the right place to look, but if not, would it still be within the hyper collection?
How can I disable the HTTP/2 dynamic table? I would like to prevent to caching of headers so that the full header content has to be sent on the wire each time, not just the index to the dynamic table. I've tried playing with the "self.max_allowed_table_size" value, but I haven't gotten it to work.
The text was updated successfully, but these errors were encountered: