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
jsonrpsee has a custom FutureDriver::select_with(fut) which will check if there are any "finished tasks" in the task list along with polling fut
This adds a bunch of complexity and ideally it could be replaced by tokio::spawn to simplify things.
All these are already captured ina tokio spawn root task in so I'm not sure whether it makes things faster or worse.
Rather than that tokio::spawn requires everything to be 'static
This, this issue is to implement it and benchmark it.
The text was updated successfully, but these errors were encountered:
jsonrpsee has a custom
FutureDriver::select_with(fut)
which will check if there are any "finished tasks" in the task list along with pollingfut
This adds a bunch of complexity and ideally it could be replaced by
tokio::spawn
to simplify things.All these are already captured ina
tokio spawn root task
in so I'm not sure whether it makes things faster or worse.Rather than that
tokio::spawn
requires everything to be'static
This, this issue is to implement it and benchmark it.
The text was updated successfully, but these errors were encountered: