摘要:
%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 阅读全文
摘要:
在mysql中, 若一张表里面不存在varchar、text以及其变形、blob以及其变形的字段的话,那么张这个表其实也叫静态表,即该表的row_format是fixed,就是说每条记录所占用的字节一样。其优点读取快,缺点浪费额外一部分空间。 若一张表里面存在varchar、text以及其变形、bl 阅读全文