Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道如果我有 MIPS 值,我如何找到支持的 cpu 内核/处理器的数量?
例如,我想知道匹配内核/处理器的数量以处理速度18 trillion instructions / sec.
18 trillion instructions / sec.
考虑到我没有任何处理器速度,我可以使用与数据库相关的每秒匹配数作为处理器速度的测量单位吗?例如每秒 2000 万次匹配
公式很简单:
target_mips / mips_per_core = number_of_core
但是在这里,你没有mips_per_core;相反,您每秒有数据库匹配数。因此,您必须查看针对特定数据库软件和体系结构的单个匹配执行了多少指令。
mips_per_core
我建议您在与用于生产数据库的架构相同的计算机上测量数据库的性能。