We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
我这边想实现一个推送服务器,想用tcp长链接实现。如果一个connection一个goroutine,系统会不会出现最终因为大量goroutine而造成GC超长。如果不这样实现,还有什么好的方式吗?谢谢了
The text was updated successfully, but these errors were encountered:
goroutine通常不会有啥大问题,想极端性能可以考虑用C、C++、Rust,如果必须用Go,可以试试 https://github.com/tidwall/evio 这个库
Sorry, something went wrong.
ok,3ks
No branches or pull requests
我这边想实现一个推送服务器,想用tcp长链接实现。如果一个connection一个goroutine,系统会不会出现最终因为大量goroutine而造成GC超长。如果不这样实现,还有什么好的方式吗?谢谢了
The text was updated successfully, but these errors were encountered: