Update README

This commit is contained in:
Tony Garnock-Jones 2021-09-02 15:28:27 +02:00
parent facef964c4
commit b7b225c9c8
1 changed files with 6 additions and 7 deletions

View File

@ -2,10 +2,9 @@
A Rust implementation of: A Rust implementation of:
- the Syndicated Actor model (partial; includes assertion-based - the Syndicated Actor model, including assertion-based
communication, failure-handling, capability-style security, and communication, failure-handling, capability-style security,
dataspace entities, but not (yet) facets as a structuring dataspace entities, and facets as a structuring principle;
principle);
- the Syndicate network protocol, including - the Syndicate network protocol, including
@ -27,13 +26,13 @@ A Rust implementation of:
git clone https://git.syndicate-lang.org/syndicate-lang/syndicate-rs git clone https://git.syndicate-lang.org/syndicate-lang/syndicate-rs
cd syndicate-rs cd syndicate-rs
cargo build --release cargo build --release
./target/release/syndicate-server ./target/release/syndicate-server -p 8001
## Running the examples ## Running the examples
In one window, start the server: In one window, start the server:
./target/release/syndicate-server ./target/release/syndicate-server -p 8001
Then, choose one of the examples below. Then, choose one of the examples below.
@ -71,7 +70,7 @@ about who kicks off the pingpong session.
You may find better performance by restricting the server to fewer You may find better performance by restricting the server to fewer
cores than you have available. For example, for me, running cores than you have available. For example, for me, running
taskset -c 0,1 ./target/release/syndicate-server taskset -c 0,1 ./target/release/syndicate-server -p 8001
roughly *quadruples* throughput for a single producer/consumer pair, roughly *quadruples* throughput for a single producer/consumer pair,
on my 48-core AMD CPU. on my 48-core AMD CPU.