Results 445 comments of Jay

Unless tokio allow integration with other executors, I don't think this can work smoothly. You have to spawn the future carefully.

I think it's over-warning in this specific case. `u8` is never read from and it doesn't implement Drop, it should be safe to assume init. But I'm also OK to...

Environment is usually wrapped in `Arc`, it will be useless to call the shutdown method. > Then they try to tear down their enclaves and SIGSEGV occurs. I don't get...

Thanks for the detail explanation. I can see there are two things can be done: 1. Guard "SimEnclaveMgr" with reference count, so that it won't be dropped unexpectedly; 2. Joining...

Joining in drop seems good to me. Although you may need to check if the current thread equal to the target thread to avoid deadlock.

Nice job! We planed to do this long time ago but still not get the time to make it really happen. Really excited to see someone can pick it up...

This is related to #179. In summary, grpc c core will reuse the same completion queue for all requests from the same connection until exceeding the [slots](https://github.com/pingcap/grpc-rs/blob/master/src/server.rs#L298). It's a known...

Actually they are already supported. But they are very hacky and just for test purpose so they are hidden from docs. https://github.com/pingcap/grpc-rs/blob/7c53f68b02cf56a5dbe042bb7d43556ac61de81a/src/channel.rs#L398-L416

Can you explain more about "how thread pool is expected to work"? AgateDB should allow sharing global thread pool with other system.