Read Your Writes: Effect of write operation by process on data item x, always seen by successive read operation on x by same process
Writes Follow Reads: Write operation by process on data item x following previous read operation on x by same process is guaranteed to take place on same or more recent value of x that was read.
Read write read: Write operation by process on data item x following previous read operation on x by same process is guaranteed to take place on same or more recent value of x that was read.
Read Your Writes: Write operation by process on data item x following previous read operation on x by same process is guaranteed to take place on same or more recent value of x that was read.
Questão 4
Questão
Which of the following is not a Data-Centric Consistency Model
Responda
Read-your-writes Consistency
Sequential Consistency
Causal Consistency
Eventual consistency
Questão 5
Questão
Which of the following is false about Object aware of replication
Responda
More difficult for developers
Allows for application specific solutions
Middleware handles communication
Middleware is responsible for ensuring objects are consistent across nodes
Questão 6
Questão
Which of the following is true about Monotonic reads and writes?
Responda
If process reads value of data item x, any successive read operation on x by that process will always return that same or more recent value
Write operation by process on data item x completed before any successive write on x by same process
If process reads value of data item x, any successive read operation on x by that process will always return a value no older than the latency between the client and the server
Write operation by process on data item x completed before any successive write by other users in the system