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 can implement SMP by using asyncio.run_in_executor to create and eventloop per process. This way each time we spawn, a task would create in one of the event loops available.
We can implement SMP by using asyncio.run_in_executor to create and eventloop per process. This way each time we spawn, a task would create in one of the event loops available.
The mailbox benchmark https://github.com/victorpoluceno/xwing/blob/development/bench/echo_server/mailbox/run.py is good start point of how to schedule actors into many cores.
The text was updated successfully, but these errors were encountered: