RTUComputer ScienceYr 2024 · Sem 62024

Q8Distributed System

Question

2 marks

Explain strict consistency in distributed shared memory.

Answer

Strict consistency is the absolute, mathematically flawless synchronization model where any read operation instantly returns the result of the most recent write operation.

Strict Consistency is the theoretical holy grail of Distributed Shared Memory. It mathematically dictates that if Node A writes to a variable, the new value propagates to all 10,000 nodes instantaneously (in zero time). It is physically impossible to achieve due to the speed-of-light limitations of network latency.

Back to Paper