abnormal increase in RAM
why, if I use this line of code, the RAM memory will gradually increase with a lot of cash, so that 3 gigs will be added to the RAM memory in 5 minutes and 7 gigs will be added in 10 minutes.
let chat = rasync_api.get_chat(GetChat::builder().chat_id(message.chat_id()).build()).await?;
https://user-images.githubusercontent.com/19387708/132486745-31af8366-4427-4a7f-b0c7-c275bcd9e9bc.mp4
but when I delete the line code, the RAM does not increase and remains constant?

source code : telegram-client/examples/client_async.rs run code : cargo build --release
I think the reason about there, https://github.com/fewensa/telegram-client/blob/7dfad7c7c7e901a4117f88353dcf92fbdc717cd5/src/rtd.rs#L39-L51, many threads are not dropped. I'm not sure, need to investigate this issue
, many threads are not dropped. I'm not sure, need to investigate this issue
exactly, i think all functions called from rasync_api() threads not dropped
I'm not sure this is the reason now, I will investigate this issue, if you find anything, please let me know