Skip to content
Snippets Groups Projects
Commit d31ce334 authored by Peter J. Keleher's avatar Peter J. Keleher
Browse files

auto

parent 3f206c24
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment