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
Change async_open back to open massively reduce memory usage. Invesigating.
updated (2024.03.23)
Setting log level to TRACE, I foundhdrs::File instances correctly dropped. And I tried offload hdrs file reading operation to avoid blocking on async runtime via tokio::task::spawn_blocking and it works like a charm. So it is highly possible that the underlying blocking mechanism currently at use is at fault.
The text was updated successfully, but these errors were encountered:
Change
async_open
back toopen
massively reduce memory usage. Invesigating.Setting log level to
TRACE
, I foundhdrs::File
instances correctly dropped. And I tried offload hdrs file reading operation to avoid blocking on async runtime viatokio::task::spawn_blocking
and it works like a charm. So it is highly possible that the underlying blocking mechanism currently at use is at fault.The text was updated successfully, but these errors were encountered: