Re: [go-nuts] Re: Large (binary or text) File transfers over rpc

2018-11-05 Thread Ricky
erent rpc system that has > the expressivity you need. e.g. with grpc you could have a method that > returns a stream. Cap'n Proto is capable of capturing this kind of thing > as well. > > Quoting Ricky (2018-11-04 14:22:11) > >I am sorry I wasn't very forthcoming in the

Re: [go-nuts] Re: Large (binary or text) File transfers over rpc

2018-11-04 Thread Ricky
nsubscribe from this group and stop receiving emails from it, send >>> an email to golang-nuts...@googlegroups.com. >>> For more options, visit https://groups.google.com/d/optout. >>> >> >> >> -- >>T o mM i t c h e l l >> > -- >

[go-nuts] add Printfln to log and fmt

2018-05-22 Thread ricky . nj
I have a rather simple request - I am not sure if this already exists but I'd like to avoid typing "\n" everytime I do Printf( ) even though I quite enjoy doing that. Is there an inbuilt library function that does this? Thanks Anirudh -- You received this message because you are subscribed to

[go-nuts] Why bytes Buffer's ReadFrom method blocked when read from a UDP connection?

2017-09-20 Thread Ricky Zhang
UDP Server's code: package main import ( "fmt" "net" ) func main() { listener, err := net.ListenUDP("udp", &net.UDPAddr{IP: net.ParseIP("127.0.0.1"), Port: 9981}) if err != nil { fmt.Println(err) return } fmt.Printf("Local: <%s> \n", listener.LocalAddr().String())