RPC - which is better - All Buffered or All Buffered Via Server?

Options
In terms of performance, flexibility , advantages and disadvantages?
I really want to know :D
Thanks! :)

Comments

  • Hi @rokugatsu,

    the difference between All* and All*ViaServer is only on the local client, who calls that RPC. Based on which option you use, the local client executes the RPC either immediately (All*) and sends the call to the server which then notifies each other client, or just sends the call to the server (All*ViaServer) and executes it only, when he gets notified by the server about this RPC. In short: the difference is the delay before the RPC gets processed on the executing client.

    So you can't say that one is 'better' than the other one, because you need to check which one fits your current needs better.
  • rokugatsu
    Options
    Thanks @Christian_Simon awesome reply as always :)