上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 58 下一页
摘要: redis实现生产者和消费者,参考以下代码: 原理: redis中blpop可以实现链表的阻塞操作,客户端连接在list没有数据的情况下会进行阻塞。这让我产生了一个疑问,redis本身是一个单线程服务,如果阻塞客户端一直保持着跟服务器的链接,会不会阻塞其他命令的执行呢? 答案显然是不会,这就涉及到r 阅读全文
posted @ 2021-11-06 18:00 毛会懂 阅读(591) 评论(0) 推荐(0) 编辑
摘要: 参考:https://blog.csdn.net/weixin_43072970/article/details/106848753 使用场景:比如注册用户时, 需要做多个操作,如发邮件,发短信,上报新用户,统计注册人数,其他的一些通知等,这些操作与注册本身关联不大。 此时可以通过spring的发布 阅读全文
posted @ 2021-11-04 17:40 毛会懂 阅读(326) 评论(0) 推荐(0) 编辑
摘要: 1、下载win版本的安装包 https://dev.mysql.com/downloads/mysql/ 2、解压缩,并建文件夹data 3、在解压缩目录新增my.ini文件。内容如下: [mysqld]# 设置3306端口port=3306# 设置mysql的解压目录(路径修改成自己的路径)bas 阅读全文
posted @ 2021-10-22 17:37 毛会懂 阅读(2157) 评论(0) 推荐(0) 编辑
摘要: 参考:https://www.jb51.net/article/157642.htm https://www.cnblogs.com/yydxxg/p/14995554.html https://blog.csdn.net/john1337/article/details/105481143/ ht 阅读全文
posted @ 2021-10-15 17:49 毛会懂 阅读(505) 评论(0) 推荐(0) 编辑
摘要: 转自: https://cloud.tencent.com/developer/article/1147085 https://www.jianshu.com/p/0d030fd112c5 https://blog.csdn.net/wentwentzx/article/details/102712 阅读全文
posted @ 2021-10-11 15:02 毛会懂 阅读(832) 评论(0) 推荐(0) 编辑
摘要: 记录: https://blog.csdn.net/weixin_42083036/article/details/110001524 https://www.cnblogs.com/hg-super-man/p/12747434.html 阅读全文
posted @ 2021-10-09 15:10 毛会懂 阅读(284) 评论(0) 推荐(0) 编辑
摘要: https://baijiahao.baidu.com/s?id=1611726471431642966&wfr=spider&for=pc https://www.liangzl.com/get-article-detail-16865.html https://blog.csdn.net/u01 阅读全文
posted @ 2021-09-28 11:54 毛会懂 阅读(81) 评论(0) 推荐(0) 编辑
摘要: 参考: https://blog.csdn.net/Json_Steve/article/details/91444430 阅读全文
posted @ 2021-09-27 15:16 毛会懂 阅读(697) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/hry2015/article/details/81226155 https://blog.csdn.net/chuan442616909/article/details/55101668 https://blog.csdn.net/qq_39470742 阅读全文
posted @ 2021-09-26 17:25 毛会懂 阅读(225) 评论(0) 推荐(0) 编辑
摘要: /** * 系统弹幕有效期(本地缓存10S,redis缓存1分钟) **/private static Map<String,LocalDateTime> barrageShowValidMap = new ConcurrentHashMap<>();private static Map<Strin 阅读全文
posted @ 2021-09-23 17:07 毛会懂 阅读(348) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 58 下一页