A client C is responsible for using multistamps to ensure that it receives invalidations before their absence could lead to the current transaction viewing an inconsistency.
C maintains two tables that store information about servers it is connected to. LATEST[S] stores the timestamp of the latest invalidation message it has received from server S and REQ[S] is the largest timestamp for S that C is required to hear about. If REQ[S] > LATEST[S], this means S has invalidations for C that C has not yet heard about.
The client also maintains a set CURR that identifies all servers
used by the currently running transaction. For each such server S in CURR,
it guarantees that LATEST[S] REQ[S]. In other words, for
all servers used by the current transaction, the invalidation
information is as recent as is required.
When the client receives an invalidation message from server S, it stores the timestamp in the message in LATEST[S].
Client C does the following when a transaction first uses object _x_:
The main point to notice here is that the processing overheads associated with multistamps are minimal (assuming multistamps are small). The main impact on system performance is in step 3 when an invalidation request is sent. When this happens there is an extra message compared to AOCC, and the current transaction is delayed, i.e., there is a _stall_. A stall can occur when a fetch completes or when a server is accessed for the first time in a transaction; note that the latter type of stall can be attributed to a fetch that occurred previously at that client. In Section 6, we evaluate the cost in terms of the stall rate, i.e., percentage of fetches that resulted in stalls.