Efficiency

Only modified data is replicated, no more or less. For example, imagine a simple table that contains player's profile as shown below:

local profile = {
    gems = 0,
    carIds = {1, 2, 3, 4, 5}
}

profile.gems += 5

After incrementation of the gems, only the location and the updated value will be replicated to the player as shown below:

{"gems", 5}

Note: The data structure used by the implementation is different from what is shown above.

Last updated