08 2018 档案

摘要:地址: https://blog.csdn.net/macb007/article/details/78887282 阅读全文
posted @ 2018-08-27 10:33 fuzzier 阅读(323) 评论(0) 推荐(0) 编辑
摘要:这里主要介绍一些heapq的常用方法 from heapq import * 1 heapify(list) 将序列list变成heap结构 2 heappush(heap, item), 向序列heap中插入一个item 3 heappop(heap), pop出堆中的最小值 4 heaprepl 阅读全文
posted @ 2018-08-15 16:51 fuzzier 阅读(232) 评论(0) 推荐(0) 编辑
摘要:地址: https://blog.csdn.net/u011734144/article/details/52817766/ 阅读全文
posted @ 2018-08-15 09:31 fuzzier 阅读(95) 评论(0) 推荐(0) 编辑
摘要:地址: https://blog.csdn.net/zyq522376829/article/details/47686867 图片: 阅读全文
posted @ 2018-08-14 09:41 fuzzier 阅读(80) 评论(0) 推荐(0) 编辑
摘要:回答原出处: https://dba.stackexchange.com/questions/77906/what-is-the-cost-of-adding-a-foreign-key-in-mysql 总结来说: 1 外键对 select 操作没有影响 2 外键主要影响对标的 insert/up 阅读全文
posted @ 2018-08-10 09:21 fuzzier 阅读(244) 评论(0) 推荐(0) 编辑
摘要:MySQL innerDB引擎会有事务概念,事务包括ACID特性 MySQL针对DML(insert, update, delete)操作具有自动开启事务操作,所以需要commit进行提交 而针对DQL(select, where...)操作默认不开启事务操作,需要手动开启 start tansac 阅读全文
posted @ 2018-08-03 14:22 fuzzier 阅读(95) 评论(0) 推荐(0) 编辑
摘要:地址 :https://www.cnblogs.com/qcloud1001/p/6555252.html 阅读全文
posted @ 2018-08-03 10:48 fuzzier 阅读(101) 评论(0) 推荐(0) 编辑
摘要:地址 :http://dockone.io/article/783 阅读全文
posted @ 2018-08-03 10:03 fuzzier 阅读(104) 评论(0) 推荐(0) 编辑