摘要:
https://www.ibm.com/developerworks/cn/linux/l-cn-directio/对于传统的操作系统来说,普通的 I/O 操作一般会被内核缓存,这种 I/O 被称作缓存 I/O。本文所介绍的文件访问机制不经过操作系统内核的缓存,数据直接在磁盘和应用程序地址空间进行传... 阅读全文
摘要:
系统中有高版本的Python, 直接pip3 install ipcalc安装,都是装到高版本的Python系统默认的Python是2.7.6,现在想装到默认版本中,可以使用easy_installyuyue@workplace:/usr/bin $ sudo easy_install ipcalc... 阅读全文
摘要:
1. 安装IPypip3 install IPy2. 写脚本:yuyue@workplace:~ $ cat combine_ip.pyfrom IPy import IPSet, IPimport sysdef handler(file_name): ret = IPSet() for... 阅读全文
摘要:
1.备库应用binlog时,会选择第一个二级索引 或者 唯一键。同时有二级索引和唯一键时,会选择唯一键。在阿里云的RDS,会始终把隐式主键放在第一个的位置。所以保证了在应用binlog走隐式主键。2. 如何去计算MySQL的TPS。通常两种方式:http://www.cnblogs.com/yuyu... 阅读全文
摘要:
http://www.360doc.com/content/14/0315/09/16068204_360719186.shtmlhttp://i-feng.iteye.com/blog/1706605 阅读全文
摘要:
#netstat -ntlpActive Internet connections (only servers)Proto Recv-Q Send-Q Local Address Foreign Address State PID/Pr... 阅读全文
摘要:
http://www.yuminstall.com/how-to-remove-mysql-relay-log.htmlCHANGE MASTER TOchanges the parameters that the slave server uses for connecting to the ma... 阅读全文
摘要:
InnoDB一定会在索引中加上主键吗http://www.penglixun.com/tech/database/will_innodb_store_pk_in_index.html 阅读全文
摘要:
http://www.360doc.com/content/14/1107/14/12904276_423333021.shtml 阅读全文
摘要:
全局内存(BASE MEMORY)线程内存(MEMORY PER CONNECTION)max_conecctions:整个 MySQL 允许的最大连接数;max_user_connections:每个用户允许的最大连接数;是针对于单个用户的连接限制 。 阅读全文