主从故障解决 mysql5.6 跳过错误,多次使用直到故障解决 Stop slave; SET GLOBAL SQL_SLAVE_SKIP_COUNTER = 1; Start slave; mysql5.7 稍后补充 ...
分类:
其他好文 时间:
2018-12-12 12:20:42
阅读次数:
141
1.跳过测试用例的方法 @unittest.skip("don't run this case!"): @unittest.skipIf(3<2,"don't run this case!"): @unittest.skipUnless(3>2,"don't run this case!"): ...
分类:
其他好文 时间:
2018-12-12 00:19:38
阅读次数:
156
背景交代: 1 mongodb 有500万条数据 2 经过过滤 还有20多万条数据 要得到上述20w条数据,一次查询得到20多万条,很可能会产生性能问题,于是同事用for循环,每次查询1000条数据,下一次skip 1000条,take 1000条。导致性能及其低下,早上请求,下午才获得完整数据。 ...
分类:
其他好文 时间:
2018-12-11 00:42:54
阅读次数:
230
RNN RNN的发源: 1. 单层的神经网络(只有一个细胞,f(wx+b),只有输入,没有输出和hidden state) 2. 多个神经细胞(增加细胞个数和hidden state,hidden是f(wx+b),但是依然没有输出) 这里RNN同时和当前的输入有关系,并且是上一层的输出有关系。 3. ...
分类:
其他好文 时间:
2018-12-10 21:02:44
阅读次数:
933
linux上 mysql初始密码不为空,为一个随机值,存储在/var/log/mysqld.log中。 也可以修改配置文件/etc/my.cnf,添加一行skip-grant-tables,使用免认证无密码登录。 重启服务 service mysqld restart mysql -u root - ...
分类:
数据库 时间:
2018-12-09 23:01:50
阅读次数:
279
Checking log directory for disk usage. This may take awhile. Press Ctrl-C to interrupt Done checking log file disk usage. Usage is <1GB. Traceback (mo... ...
分类:
其他好文 时间:
2018-12-04 20:08:28
阅读次数:
925
Easy Game LightOJ - 1031 You are playing a two player game. Initially there are n integer numbers in an array and player A and B get chance to take th ...
分类:
其他好文 时间:
2018-12-04 17:24:34
阅读次数:
389
This time of year, we take stock of what we're thankful for — and above all else, we’re thankful for you. Firefox wouldn't be the same without our com ...
分类:
其他好文 时间:
2018-12-04 11:38:30
阅读次数:
204
转自:https://www.cnblogs.com/qiumingcheng/p/5771357.html [mysqld]skip-name-resolve skip-name-resolve 选项就能禁用DNS解析,连接速度会快很多。不过,这样的话就不能在MySQL的授权表中使用主机名了而只能 ...
分类:
数据库 时间:
2018-11-30 20:05:41
阅读次数:
157
mysql开启远程访问发现从远程连接每次都在5秒以上,从本机连接很快。 解决方案: [mysqld] 标签下添加一行配置 skip-name-resolve 重启mysqld服务, 问题解决! ...
分类:
数据库 时间:
2018-11-29 12:30:02
阅读次数:
166