摘要: https://en.wikipedia.org/wiki/Fundamental_theorem_of_arithmetic In number theory, the fundamental theorem of arithmetic, also called the unique factor 阅读全文
posted @ 2018-12-19 23:14 papering 阅读(367) 评论(0) 推荐(0)
摘要: Go 每日一库之 wire - SegmentFault 思否 https://segmentfault.com/a/1190000021895220 这个InitMission()函数是不是和我们在main.go中编写的代码一毛一样!接下来,我们可以直接在main.go调用InitMission( 阅读全文
posted @ 2018-12-19 20:22 papering 阅读(427) 评论(0) 推荐(0)
摘要: https://github.com/google/leveldb https://axlgrep.github.io/ LevelDB作为一个数据存储引擎,存储的数据大部分是在磁盘上的,而磁盘上数据的表现形式就是文件,也就是本章要介绍的SST文件,SSTable 是 Sorted String T 阅读全文
posted @ 2018-12-19 17:44 papering 阅读(560) 评论(0) 推荐(0)
摘要: MySQL Bugs: #34354: Feature request: EXPLAIN ALTER TABLE https://bugs.mysql.com/bug.php?id=34354 [SQL]EXPLAIN ALTER TABLE `answer` MODIFY COLUMN `cont 阅读全文
posted @ 2018-12-19 17:01 papering 阅读(267) 评论(0) 推荐(0)
摘要: EXPLAIN SELECT COUNT(1) FROM question; id select_type table partitions type possible_keys key key_len ref rows filtered Extra1 SIMPLE question index u 阅读全文
posted @ 2018-12-19 16:29 papering 阅读(346) 评论(0) 推荐(0)
摘要: ALTER TABLE `question` MODIFY COLUMN `title` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '修改字符集为utf8mb4,兼容表情符' AFTER 阅读全文
posted @ 2018-12-19 16:26 papering 阅读(1144) 评论(0) 推荐(0)