// +build linux darwin dragonfly freebsd netbsd openbsd rumprun
// Package tcplisten provides customizable TCP net.Listener with various// performance-related options://// - SO_REUSEPORT. This option allows linear scaling server performance// on multi-CPU servers.// See https://www.nginx.com/blog/socket-sharding-nginx-release-1-9-1/ for details.//// - TCP_DEFER_ACCEPT. This option expects the server reads from the accepted// connection before writing to them.//// - TCP_FASTOPEN. See https://lwn.net/Articles/508865/ for details.//// The package is derived from https://github.com/kavu/go_reuseport .
The pages are generated with Goldsv0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds.