We are working on attempts to reduce the overhead from spawning a new tokio task per each call to async functions. We are currently experimenting with 2 (mutually exclusive) changes: - Changing the tokio worker count to 1 (simpler but with likely with smaller improvement) - Writing a custom async bridge (#414) (bigger gains, bigger complexity)
We are working on attempts to reduce the overhead from spawning a new tokio task per each call to async functions.
We are currently experimenting with 2 (mutually exclusive) changes: