|
|
|
|
|
by signa11
2294 days ago
|
|
with blocking semantics, you are sure to run into deadlocks in a single-threaded environment pretty easily a -> b -> c -> a. grpc f.e. has support for blocking requests but it's 'solution' is to spawn a new thread for the request. |
|