Complete the code to describe fan-out on write.
In fan-out on write, the system [1] updates to all followers immediately after a write.Fan-out on write means the system pushes updates to all followers right after a write.
Complete the code to describe fan-out on read.
In fan-out on read, the system [1] updates to followers only when a read request happens.Fan-out on read means the system pulls or fetches updates when a read occurs, not immediately after write.
Fix the error in the statement about fan-out on write.
Fan-out on write [1] the system to update followers only during read requests.Fan-out on write prevents updates only during read requests; it updates immediately after write.
Fill both blanks to complete the comparison.
Fan-out on write [1] latency on writes but [2] latency on reads.
Fan-out on write increases write latency because it pushes updates immediately, but reduces read latency since data is ready.
Fill all three blanks to complete the fan-out on read description.
Fan-out on read [1] write latency, [2] read latency, and [3] complexity in read handling.
Fan-out on read reduces write latency by delaying updates, increases read latency due to fetching, and adds complexity in read handling.
