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
看了高性能、高并发、高扩展性和可读性的网络服务器架构:StateThreads文章 st 只是模拟线程的行为,在单核上性能比较好, 如果纯计算话,不如当线程了 在多核呢?看相关代码只提到vp 虚拟处理器概念 但是具体如何使用呢?
vp初始化先创建idle thread,然后根据I/O事件驱动其它threads,这就是ST的多核架构。
The text was updated successfully, but these errors were encountered:
多核可以参考dart的isolate。
Sorry, something went wrong.
Dup to #19
No branches or pull requests
看了高性能、高并发、高扩展性和可读性的网络服务器架构:StateThreads文章
st 只是模拟线程的行为,在单核上性能比较好,
如果纯计算话,不如当线程了
在多核呢?看相关代码只提到vp 虚拟处理器概念
但是具体如何使用呢?
vp初始化先创建idle thread,然后根据I/O事件驱动其它threads,这就是ST的多核架构。
The text was updated successfully, but these errors were encountered: