posted @ 2017-05-26 17:30
05 2017 档案
摘要:http://dev.mysql.com/doc/refman/5.5/en/innodb-parameters.html#sysvar_innodb_thread_concurrency InnoDB tries to keep the number of operating system thr
阅读全文
摘要:背景: Innodb引擎使用B_tree结构保存表数据,这样就需要一个唯一键表示每一行记录(比如二级索引记录引用)。 Innodb表定义中处理主键的逻辑是: 1.如果表定义了主键,就使用主键唯一定位一条记录 2.如果没有定义主键,Innodb就生成一个全局唯一的rowid来定位一条记录 auto_i
阅读全文
posted @ 2017-05-26 17:18
摘要:成功启动MongoDB后,再打开一个命令行窗口输入mongo,就可以进行数据库的一些操作。输入help可以看到基本操作命令,只是MongoDB没有创建数据库的命令,但有类似的命令 如:如果你想创建一个“myTest”的数据库,先运行use myTest命令,之后就做一些操作(如:db.createC
阅读全文
posted @ 2017-05-26 12:25
摘要:http://www.linuxidc.com/Linux/2017-05/143501.htm http://blog.csdn.net/thundermeng/article/details/52815011
阅读全文
posted @ 2017-05-09 17:11
摘要:http://www.linuxidc.com/Linux/2017-05/143521.htm
阅读全文
posted @ 2017-05-09 17:07
摘要:http://www.linuxidc.com/Linux/2015-02/113057.htm #!/usr/bin/python############################################################# This python script is
阅读全文
posted @ 2017-05-09 17:02