Concurrency primitives and interfaces? #88
maxfischer2781
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The design of
asyncstdlib
currently avoids relying on any concrete concurrency primitives – such assleep
orEvent
– to be event loop agnostic. This means that the toolbox can be used with concurrency but doesn't provide any by itself. While that is sufficient for mirroring the (synchronous!) standard library, there are some natural extensions – such as concurrency safety as in #86 or internal concurrency as in #76 – that would be useful for anasync
toolbox.Technically, this could be approached by having a small set of concurrency primitives for which
asyncstdlib
defines the interface and event loops must implement it. The implementation to use would be swappable viathreading.local
/contextlib
/...; soasyncstdlib
just defines how to plug into things and perhaps anasyncio
implementation and the rest is optional/third-party.Some food for thought and notes:
Should this actually be in
asyncstdlib
? A quick review of mine:anyio
as anasyncio
/trio
agnostic async framework already. Skipping the actual I/O and task APIs and focusing on high-level algorithmic primitives might be worthwhile.sniffio
for a low-level cross-event-loop framework. This might be an optional dependency to automate event loop discovery; there is no need to have every event loop implementation put a piece of code intoasyncstdlib
.What are the key event loop architectures to have in mind? The major ones I am aware of:
asyncio
: UsesFuture
s as the basic event-like primitive. Uses suspension only (?) for task switching; cancellation is incidental.trio
: Uses an ambient scheduler and indefinite suspensions. Uses supension for task switching and cancellation.curio
: Uses an direct scheduler and indefinite suspensions. Uses supension for task switching, commands and cancellation.What are the reference primitives? Based on my trials so far:
Task
-like form of adding concurrency.Event
-like means to notify many other tasks.Lock
-like means to notify a specific task.What are pain points to consider? Some examples that I have struggled with:
yield
makes that fall apart since we have a call tree in reality.Beta Was this translation helpful? Give feedback.
All reactions