From d31ce3342955b67452447662e727ee597de023db Mon Sep 17 00:00:00 2001 From: "Peter J. Keleher" <keleher@cs.umd.edu> Date: Sat, 20 Nov 2021 13:42:42 -0500 Subject: [PATCH] auto --- p4/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/p4/README.md b/p4/README.md index 4053f90..e57b813 100644 --- a/p4/README.md +++ b/p4/README.md @@ -501,7 +501,7 @@ the new value of "nice" as follows: client> go run client.go -o 0,w,nice,55 wrote to 0: "nice" = "55" - client> go run client.go -o 0,r,nice + client> go run client.go -o 2,r,nice read from 2: "nice" is "55" 7) [5 pts] Same thing, but here the replica pauses on the commit, also delaying the read: @@ -512,7 +512,7 @@ the new value of "nice" as follows: client> go run client.go -o 0,w,nice,55 wrote to 0: "nice" = "55" - client> go run client.go -o 3,r,nice + client> go run client.go -o 2,r,nice read from 2: "nice" is "55" 8) [5 pts] Same thing, but now the read is asynchronous, and returns immediately with the wrong value BEFORE the write completes: @@ -523,7 +523,7 @@ the new value of "nice" as follows: client> go run client.go -o 0,w,nice,55 wrote to 0: "nice" = "55" - client> go run client.go -o 3,a,nice + client> go run client.go -o 2,a,nice read from 2: "nice" is "55" ## Video -- GitLab