[go-nuts] Re: Go UDP performance

2017-02-21 Thread anupam . kapoor
> "Franke" == Marcus Franke writes: ,[ Franke ] | an additional note, don't forget to monitor the netstat udp counter on both | servers. | | % netstat -auns | grep -A 7 "Udp:" | Udp: | 9381 packets received | 0 packets to unknown port received | 0 packet receive errors | 1009 packets

[go-nuts] Re: Fast ConcurrentCounter without memory sharing

2016-08-16 Thread anupam . kapoor
, | It would be interesting to know what the potential speedup is. It | should be easy enough to write a C program to measure that. But when | writing such a program, remember that no real program will simply | increment a concurrent counter. The question is not just how much | speedup you

[go-nuts] Re: Small complete examples which show the power of Go?

2016-08-15 Thread anupam . kapoor
, | I always liked Rob Pike's concurrent prime seive: | https://play.golang.org/p/9U22NfrXeq ` i think what you are looking for is an elegant paper by doug-mcllroy called "squinting at power series" which bring the power of channels etc to stream processing... -- kind regards anupam --