摘要:
SHELL[05] 阅读全文
摘要:
Linux Shell 重定向 阅读全文
摘要:
进行MySQL的配置优化,首先必须找出MySQL的性能瓶颈所在;而SHOW STATUS输出的报告正是用来计算性能瓶颈的参考数据。mysqlreport不像SHOW STATUS那样简单的罗列数据,而是对这些参考数据加以融合计算,整理成一个个优化参考点,然后DBA就可以根据这个优化参考点的值以及该点的衡量标准,进行对应调整。这篇文章既不分析mysqlreport的报告含义,也不说明优化参考点的计算公式和原理,只简单描述使用方法。后面再逐次深入分析。mysqlreport主页和下载地址 web site:http://hackmysql.com/mysqlreport download:h... 阅读全文
摘要:
对于Linux2.6内核机器 逻辑CPU个数:cat /proc/cpuinfo | grep "processor" | wc -l 物理CPU个数:cat /proc/cpuinfo | grep "physical id" | sort | uniq | wc -l "siblings” 指的是一个物理CPU有几个逻辑CPU "cpu cores”指的是一物理CPU有几个核 不应该按照flags里是否有 ht 标志来判断系统是否有超线程能力,而应该: 如果“siblings”和“cpu cores”一致,则说明不支持超线程,或者 阅读全文
摘要:
index.cpp:59: in-class initialization of static data member of non-integral type `const string'index.cpp:60: in-class initialization of static data member of non-integral type `const string'index.cpp:61: in-class initialization of static data member of non-integral type `const string' St 阅读全文
摘要:
简单介绍STL对集合操作有标准的算法:交集set_intersection、并集set_union、差集set_difference、对称差集set_symeetric_difference。 针对这里提及的四个集合运算必须特别注意: 1、第一个算法需保证第一集合和第二集合有序,并从小到大排序,内部使用默认“
OutputIterator set_inters... 阅读全文
摘要:
std::set用法总结 阅读全文