diff options
Diffstat (limited to 'demo/async/README.adoc')
| -rw-r--r-- | demo/async/README.adoc | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/demo/async/README.adoc b/demo/async/README.adoc index ec91c722..87c44cec 100644 --- a/demo/async/README.adoc +++ b/demo/async/README.adoc @@ -6,8 +6,11 @@ processing with minimal fuss. == Compiling -You can override the level of concurrency with the `PARALLEL` -define. This determines how many requests the server will accept +This is set up for configuration with CMake for ease of use. + +You can override the level of concurrency with the `PARALLEL` option. + +This determines how many requests the server will accept at a time, and keep outstanding. Note that for our toy implementation, we create this many "logical" flows of execution (contexts) (these are _NOT_ threads), where a request is followed by a reply. @@ -20,6 +23,8 @@ you can't have more than one client per descriptor. Contexts can be used on the client side to support many thousands of concurrent requests over even just a single TCP connection, however.) +You can also build this all by hand with Make or whatever. + On UNIX-style systems: [source, bash] |
