In: Computer Science
Take a position on whether or not call-by-copy/restore is ideal for client-server architectures in distributed computing. Defend your answer.
but after considering following reasons ,we can state
call-by copy/restore is not ideal for client server architecture in
distributed computing.
call by copy/restore is a special case of call-by reference where
the provided reference is unique to the caller .The final result on
the referenced values will not be saved untill the end of the
function .
This type of calling is ideal when a method in RPC (REMOTE PROCEDURE CALL) called by reference .The actual data is sent to the server side and the final result will send to the client side.This will reduce traffic ,since the server will not update the reference each time .