-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Case Study: C++ Thread-Safety Concurrency #4
Comments
Why
|
Refactor: breaking API change for all clients |
For async see this: |
C++20 another reference c++20 coroutine:
Maybe, alternative: |
Initial in the last commit, the use of mutex lock_guard (RAII) was inserted to match the time in sending requests. (Sync) As for the asynchronous method, it will need to be better evaluated to avoid possible cases of unnecessary complexity for a sample project. Even based on my last asynchronous test ( Another references: |
Getting briefly talked about in the last PR.
The plan is to begin to investigate a case for implementing a solution for concurrency that is compatible with the API of the tb_client library.
Note: The latest commit, C++ version has been downgraded to 14. It is not necessary to have the latest version for a proposal.
However, nothing prohibits a better implementation!
#2 (comment)
cc: @batiati @kprotty
Reference
The text was updated successfully, but these errors were encountered: