摘要: %timeit # Insert 100,000 values at the front of the list (index=0) c0 = [] t_insert = %timeit -o -n1000 -r100 c0.insert(0, 'a') # Append 100,000 value 阅读全文
posted @ 2020-01-20 21:10 wqbin 阅读(864) 评论(0) 推荐(0) 编辑
摘要: 在mysql中, 若一张表里面不存在varchar、text以及其变形、blob以及其变形的字段的话,那么张这个表其实也叫静态表,即该表的row_format是fixed,就是说每条记录所占用的字节一样。其优点读取快,缺点浪费额外一部分空间。 若一张表里面存在varchar、text以及其变形、bl 阅读全文
posted @ 2020-01-20 10:07 wqbin 阅读(531) 评论(0) 推荐(0) 编辑