Ares Andrew

Results 20 comments of Ares Andrew

I also got this problem. But I'm using a [GUI of neovim](https://github.com/Kethku/neovide) Here's my `.vimrc` and `$HOME/.config/nvim/init.vim` * .vimrc ```shell set hidden set nobackup set nowritebackup set cmdheight=2 set updatetime=3...

Any progress on this ?

IMO, I'm not sure using a thread pool is suitable for the real-world use case, say we want to make the ffi call any times we need. So, is there...

Yeah. I understand the reason to use a thread pool. But in my app, I kindly need to provide the ability to make any times FFI calls (click a button)...

AFAIK, we don't support async ffi call now. My ffi calls use the blocking channel to bridge async to sync. If we want to improve this "ffi call times" thing,...

I find it maybe interesting to use `Threadpool::set_num_threads()` to manage thread pool size dynamically. I'll try to make a PR on that.