for app development, what concurrency model should I use? #2537
Answered
by
achamayou
Deleted user (ghost)
asked this question in
Q&A
|
I did not find document talking about concurrency question, I have some question about that, I listed below.
|
Answered by
achamayou
Apr 29, 2021
Replies: 1 comment 6 replies
|
There's a bit of detail about threading here: https://microsoft.github.io/CCF/main/overview/threading.html
We will try to make this more apparent in the documentation, but CCF is really a framework, not a library. The application is defined as a collection of endpoint handlers, which are triggered and executed by the framework in response to RPCs. Concurrency, re-execution on conflicts, forwarding to the primary etc are handled by the framework entirely, transparently for the handlers. |
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There's a bit of detail about threading here: https://microsoft.github.io/CCF/main/overview/threading.html
We will try to make this more apparent in the documentation, but CCF is really a framework, not a libr…