Why async entrypoints if code is sync #17
Unanswered
jalvespinto
asked this question in
Q&A
Replies: 1 comment
-
Ideally, command and query execution should be async, but this is not my priority at the moment :) I will look into it in the future, when all core functionalities are ready. |
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
-
I am developing an app on fastapi and basically following the design in architecture patterns with python. Now I will try to make it async and during my study I found this repo. I have little experience with async, but if I understood right your code is thread safe, but sync and yet you are using async entrypoints. Wouldn't this by a issue when there is IO events since requests to a endpoint would run in the same thread?
Beta Was this translation helpful? Give feedback.
All reactions