|
|
|
|
|
by couchand
1507 days ago
|
|
> > Any read (GET or LIST request) that is initiated following the receipt of a successful PUT response will return the data written by the PUT request. > So this is stronger than RYW. I'm not sure that it is? The examples listed below that description only specify making an update and then immediately reading it back from the same process. |
|
At T0 Client 1 writes 'color = red.' Write 1 completes at T1.
At T2 Client 2 writes 'color = ruby.' Write 2 completes at T3.
At T4 Client 1 reads 'color = ruby,' the result of Write 2 from Client 2.
The explanation above says "Because S3 is strongly consistent, R1 and R2 both return color = ruby." There are clearly some subtleties (as explained further down the page) but I don't think Amazon are really being deceptive here.