上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 33 下一页
摘要: python, datetime is not json serializable 示例代码: ref:https://stackoverflow.com/questions/11875770/how-to-overcome-datetime-datetime-not-json-serializab 阅读全文
posted @ 2018-02-06 16:18 Go_Forward 阅读(357) 评论(0) 推荐(0) 编辑
摘要: select order_time, max(sum_price) from (SELECT order, sum(price) as sum_price FROM orders group by order_time) as table_tmp; 阅读全文
posted @ 2018-02-06 15:05 Go_Forward 阅读(263) 评论(0) 推荐(0) 编辑
摘要: from:http://blog.csdn.net/zhanglu0223/article/details/8713149 1. 索引建立的原则 用于索引的最好的备选数据列是那些出现在WHERE子句、join子句、ORDER BY或GROUP BY子句中的列。 仅仅出现在SELECT关键字后面的输出 阅读全文
posted @ 2018-02-05 10:07 Go_Forward 阅读(102) 评论(0) 推荐(0) 编辑
摘要: from:http://blog.csdn.net/zhaoshensky/article/details/75815991 MySQL在进行alter table等DDL操作时,有时会出现Waiting for table metadata lock的等待场景。而且,一旦alter table T 阅读全文
posted @ 2018-01-30 12:03 Go_Forward 阅读(133) 评论(0) 推荐(0) 编辑
摘要: from:https://jingyan.baidu.com/article/f54ae2fc2724a71e92b849c4.html 选择 dpkg -l来查看软件的状态。 选择 dpkg -P来卸载软件。因为dpkg --remove只是删除安装的文件,但不删除配置文件。而dpkg --pur 阅读全文
posted @ 2018-01-26 09:23 Go_Forward 阅读(904) 评论(0) 推荐(0) 编辑
摘要: dpkg遇到安装有依赖,而依赖的包有无法安装的时候,可以试试强制安装: 虽然报错,但是安装后还是可以使用。 如果使用: 提示下面错误信息并且无法安装通过: dpkg: teamviewer: dependency problems, but configuring anyway as you req 阅读全文
posted @ 2018-01-25 21:44 Go_Forward 阅读(3329) 评论(0) 推荐(0) 编辑
摘要: 由于redis没有批量删除命令,所以借助xargs redis-cli -h 127.0.0.1 keys testdata_2018* |xargs redis-cli -h 127.0.0.1 del 找到没有设置ttl的key redis-cli --scan | while read LIN 阅读全文
posted @ 2018-01-25 17:43 Go_Forward 阅读(378) 评论(0) 推荐(0) 编辑
摘要: tensorflow读取图像出现错误:UnicodeDecodeError: 'utf-8' codec can't decode byte 0xff in position 0: invalid start byte 原因:在 这一行,读取的时候读取方式应该是“rb”,在读取模式只使用“r”的时候 阅读全文
posted @ 2018-01-20 10:39 Go_Forward 阅读(2119) 评论(0) 推荐(0) 编辑
摘要: https://segmentfault.com/a/1190000006158186 https://tech.meituan.com/mysql-index.html http://www.cnblogs.com/wajika/p/6713636.html 使用索引,减少列,减少连接操作,精简数 阅读全文
posted @ 2018-01-19 11:05 Go_Forward 阅读(150) 评论(0) 推荐(0) 编辑
摘要: from:https://segmentfault.com/q/1010000000611228 阅读全文
posted @ 2018-01-19 09:56 Go_Forward 阅读(301) 评论(0) 推荐(1) 编辑
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 33 下一页