gorpc
gorpc copied to clipboard
the docs make me confused, is there any project for reference?
I have seen the example_test.go
, but I still feel confused about how to use gorpc. For exmaple, if my implementation of client and server is segregative, how can I use code like this
d := NewDispatcher() s := NewTCPServer("127.0.0.1:12445", d.NewHandlerFunc()) c := NewTCPClient("127.0.0.1:12445") dc := d.NewFuncClient(c)
And I feel confused that whether rpc call need a connection pool or not.
Thanks!
agreed
agreed