04 2021 档案
IO多路复用是如何进化来的
摘要:参考: https://mp.weixin.qq.com/s/SwZZchHkEODcDlncQgDO2A https://mp.weixin.qq.com/s/OmRdUgO1guMX76EdZn11UQ 阅读全文
posted @ 2021-04-09 13:31 毛会懂 阅读(88) 评论(0) 推荐(0)
mysql 隔离级别,事务测试
摘要:基础: # 查询mysql的版本select version(); # 查询事务的隔离级别select @@tx_isolation; SELECT @@transaction_isolation; set session tx_isolation='REPEATABLE-READ'; set se 阅读全文
posted @ 2021-04-07 18:52 毛会懂 阅读(81) 评论(0) 推荐(0)
安装的mongodb路径在哪
摘要:打开cmd输入services.msc查看服务可以看到MongoDB服务,右键看属性 。 阅读全文
posted @ 2021-04-07 10:02 毛会懂 阅读(1109) 评论(0) 推荐(0)
PyCharm下解决Unresolved Reference问题
摘要:在pycharm中设置source路径 file–>setting–>project:server–>project structure 将放package的文件夹设置为source,这样import的模块类等,就是通过这些source文件夹作为根路径来查找,也就是在这些source文件夹中查找im 阅读全文
posted @ 2021-04-06 17:37 毛会懂 阅读(5716) 评论(0) 推荐(0)
excel排序
摘要:http://www.excelhome.net/lesson/animation/excel/1948.html 阅读全文
posted @ 2021-04-04 13:55 毛会懂 阅读(65) 评论(0) 推荐(0)
redis 重试锁
摘要:@Value("${get.lock.max.time}")private Integer getLockMax;@Value("${get.lock.sleep}")private Long getLockSleep;@Resourceprivate RedisTemplate<String, O 阅读全文
posted @ 2021-04-01 15:25 毛会懂 阅读(679) 评论(0) 推荐(0)