Context should not use async #465
BrynCooke
started this conversation in
Implementation
Replies: 1 comment
-
What’s our merge strategy ? Maybe we shouldn’t provide Arc<Mutex<>> but require Send + Sync Maybe adding convenience wrappers would suffice for now |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Currently Context contains an async datastructure.
This has the following downsides:
Possible alternatives:
Synchronous lock - Should not have much contention, maybe this is OK?Doesn't work.Beta Was this translation helpful? Give feedback.
All reactions