上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 28 下一页
摘要: 用PPT去改善吧 阅读全文
posted @ 2018-03-26 11:26 友哥 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 。。。 阅读全文
posted @ 2018-03-21 17:03 友哥 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 写c/c++的人,羡慕java可以自己管理内存 写java的人,羡慕c/c++没有gc问题 阅读全文
posted @ 2018-03-13 18:05 友哥 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 这周五下班前,发现了一个奇怪问题,大概是这个背景 一张表,结构为 总共有37K rows的数据,数据大概是这样 运行了这个SQL 速度也很快。 可是在运行explain的时候 发现rows居然有,26358 查看MySQL官方文档,rows所代表的含义 翻译过来就是,估计需要检测的行数。 可是从DB 阅读全文
posted @ 2018-03-10 22:40 友哥 阅读(3703) 评论(1) 推荐(0) 编辑
摘要: 从负数干到1,也是牛逼。 阅读全文
posted @ 2017-12-16 00:05 友哥 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 花了蛮长时间实现的b树插入操作。有时间再实现其他操作。 阅读全文
posted @ 2017-11-26 17:06 友哥 阅读(427) 评论(0) 推荐(0) 编辑
摘要: import re import sys import getopt import MySQLdb from subprocess import call import os host='10.76.45.7' port=3306 user='test' password='test' dbName='test' def loadSlowLogtoDb(mysqlConn,keyValueL... 阅读全文
posted @ 2017-09-18 15:38 友哥 阅读(372) 评论(0) 推荐(0) 编辑
摘要: import re import MySQLdb host='10.76.45.7' port=3306 user='test' password='test' dbName='test' def loadSlowLogtoDb(mysqlConn,keyValueList): insertSql="insert into slowLog( \ Rows_examined,R... 阅读全文
posted @ 2017-09-16 18:41 友哥 阅读(347) 评论(0) 推荐(0) 编辑
摘要: 三层嵌套循环不够高效,在leetcode上最后几个testcase,执行超时,无法accept。重写之前,将该实现保存 阅读全文
posted @ 2017-07-01 19:08 友哥 阅读(334) 评论(0) 推荐(0) 编辑
摘要: public final int getAndAddInt(Object o, long offset, int delta) { int v; do { v = getIntVolatile(o, offset); } while (!compareAndSwapInt(o, offset, v, v + delta));... 阅读全文
posted @ 2017-03-25 17:24 友哥 阅读(153) 评论(0) 推荐(0) 编辑
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 28 下一页