mysql thread cache命中率

有关于thread cache的介绍请参考:

http://www.mysql100.com/mysql/2012/0829/217.html(该文档的命中率公式是错误的,请参考下面的公式)


有关于状态参数的详细解释

threads_running:目前处于激活状态的线程数(实时值)

threads_created:从启动到现在一共创建的线程数(累计值)

threads_connected:目前打开连接的线程数(实时值)

threads_cached:thread cache池缓存的线程数(实时值)

Connections:从启动到现在已经处理的连接数(累计值)

thread_cache_size:thread cache池能够缓存的最大线程数

thread_stack:线程创建时分配的内存


命中率

thread cache命中率(高于90%为合理)

100-(threads_created/Connections*100)


说明:

当threads_created持续变化时说明threads_cache_size的值偏低,需要增大。

详细状态参数:http://docs.oracle.com/cd/E17952_01/refman-5.1-en/server-status-variables.html


你可能感兴趣的:(thread,mysql,命中率)