From b82948f3808bec6e0c3dcf714aee1572348d9d98 Mon Sep 17 00:00:00 2001 From: keleher <keleher@cs.umd.edu> Date: Tue, 3 Dec 2019 18:42:28 -0500 Subject: [PATCH] auto --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 605de55..6119825 100644 --- a/README.md +++ b/README.md @@ -112,11 +112,12 @@ log abstraction in `replica.go` ## Use of the `transactionalClient` Your `transactionalClient.go` takes several arguments (see code), but the two important ones are: -- `-p`: tells your code to do two things: - - at end-of-text write out commit/abort notifications for each transaction +- `-p`: tells your code upon encountering end-of-text (CTRL-D) to: + - write out commit/abort notifications for each transaction whose fate has been decided, in the order that they were decided. - write out the contents of your KV store, ordered lexicographically by key value. Only written values need be printed. + - exit. - `-s`: use snapshot isolation instead serializable isolation `transactionalClient.go` differs from `client.go` in that it reads commands -- GitLab