You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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!
The text was updated successfully, but these errors were encountered:
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 thisd := 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!
The text was updated successfully, but these errors were encountered: