priestjim / gen_rpc

A scalable RPC library for Erlang-VM based languages

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

some question about gen_rpc:call

opened this issue · comments

First, thanks for this repo.

is it working when local node call gen_rpc:call?

  1. the remote node return big binary(eg,50MB)
  2. the network is buy,the return data from remote node can not be received at once

thx u.

Yes, you can adjust the send and receive timeouts in the application's settings to allow for delays in message delivery. If you expect network congestion, I'd recommend adjusting both network timeouts and call timeouts.

i got it ,thx