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
We currently use tokio::task::block_in_place for async operations within Rockbound, but we'd probably like to switch to spawn_blocking. spawn_blocking has some performance benefits and, most importantly, doesn't abort in case of panics but instead recovers from them.
The text was updated successfully, but these errors were encountered:
We currently use
tokio::task::block_in_place
for async operations within Rockbound, but we'd probably like to switch tospawn_blocking
.spawn_blocking
has some performance benefits and, most importantly, doesn't abort in case of panics but instead recovers from them.The text was updated successfully, but these errors were encountered: