Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Multithread Websockets to increass throughput (hyperledger#231)
Vertx by default orders all calls to executeBlocking in an ordered fashion. As a side effect all requests are single threaded, even across multiple clients. Because JSON-RPC has request identifiers it is not needed to thread responses as they can be answered out of order. This also allows multiple threads to handle requests, increasing throughput. Signed-off-by: Danno Ferrin <danno.ferrin@gmail.com>
- Loading branch information