-
SummaryHi, Using tokio-console, we get a warning saying that the axum task is 1928 Bytes, and it's taking a large amount of space. How to reduce the space taken by the serve future. I guess I have to box it somewhere. axum version7.9 |
Beta Was this translation helpful? Give feedback.
Answered by
yanns
Jan 22, 2025
Replies: 1 comment 2 replies
-
I saw this warning as well, and I'm personally unsure what we should do about it. Option 1: we do nothing
Option 2: add box somewhere
My personal conclusion: better doing nothing for now. The services I'm running with axum are using much more memory due to json serialization / deserialization. |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
Sagebati
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I saw this warning as well, and I'm personally unsure what we should do about it.
Option 1: we do nothing
Option 2: add box somewhere
My personal conclusion: better doing nothing for now. The services I'm running with axum are using much more memory due to json serialization / deserialization.