关于MySQL的多CPU访问 #1763
ericzhanchina
started this conversation in
General
关于MySQL的多CPU访问
#1763
Replies: 2 comments 5 replies
-
应该多开几个service,然后外层使用proxy的方式,通过pid进行hash找到对应的mysql service进行数据库操作。单个服务包含多个mysql链接,发挥不了。 |
Beta Was this translation helpful? Give feedback.
5 replies
-
skynet 只有一个 io 线程,即使是多条连接,最终还是汇总到一起。所以拆分开意义不大。 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
目前是使用了一个单独的Service来访问MySQL的,MySQL由于是多核的,我理解建立多个链接的话效率肯定会更高,连接数与核心数保持一致。然后这个service维持着多个mysql的链接,保证每个服务的访问都提交到同一个链接上,比如使用一种简单的hash算法。
是不是这样的方式就可以充分利用多核的优势了,请教。
Beta Was this translation helpful? Give feedback.
All reactions