redis HyperLogLog 与bitmap的用法
摘要: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
毛会懂
阅读(84)
推荐(0) 编辑
RabbitMQ队列 auto delete 没有自动删除
摘要:参考: https://blog.csdn.net/Json_Steve/article/details/91444430
阅读全文
posted @
2021-09-27 15:16
毛会懂
阅读(704)
推荐(0) 编辑
Spring Websocket实现websocket集群方案讨论
摘要: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
毛会懂
阅读(234)
推荐(0) 编辑
本地缓存,redis缓存综合应用
摘要:/** * 系统弹幕有效期(本地缓存10S,redis缓存1分钟) **/private static Map<String,LocalDateTime> barrageShowValidMap = new ConcurrentHashMap<>();private static Map<Strin
阅读全文
posted @
2021-09-23 17:07
毛会懂
阅读(349)
推荐(0) 编辑
千万级用户排行榜设计
摘要:参考: https://blog.csdn.net/riemann_/article/details/113828075?utm_medium=distribute.pc_relevant.none-task-blog-2~default~baidujs_baidulandingword~defau
阅读全文
posted @
2021-09-19 14:08
毛会懂
阅读(205)
推荐(0) 编辑
概率抽奖
摘要:// 概率抽奖:prizeList为奖品列表,,每一个奖品有一个概率值PrizeDO prize = null;if(!CollectionUtils.isEmpty(prizeList)){ double value = new Random().nextDouble() * 100 ; log.
阅读全文
posted @
2021-09-17 09:45
毛会懂
阅读(27)
推荐(0) 编辑
java 固定长度的队列
摘要:public static void main(String[] args) throws InterruptedException { CircularFifoQueue queue = new CircularFifoQueue(5); for(int i = 0;i < 10;i++) { q
阅读全文
posted @
2021-09-15 15:08
毛会懂
阅读(1091)
推荐(0) 编辑
弹窗dnews_center.exe如何彻底删除
摘要:https://blog.csdn.net/qq_41592706/article/details/119245916
阅读全文
posted @
2021-09-14 17:34
毛会懂
阅读(1951)
推荐(0) 编辑
弹幕设计参考
摘要:https://blog.csdn.net/weixin_45583158/article/details/100143299?utm_medium=distribute.pc_relevant.none-task-blog-2%7Edefault%7ECTRLIST%7Edefault-2.no_
阅读全文
posted @
2021-09-14 17:34
毛会懂
阅读(74)
推荐(0) 编辑
jmeter获取上一个接口返回值的几种方法
摘要:参考:https://www.pianshen.com/article/42571220154/
阅读全文
posted @
2021-09-06 18:48
毛会懂
阅读(839)
推荐(0) 编辑
Jmeter json提取器,提取的字段为null的问题
摘要:如果recordId 为null。 则if控制器的条件应该这样写: ${__jexl3("${recordId}"=="",)} 最开始是这样写的:${__jexl3(${recordId}=="",)},不对
阅读全文
posted @
2021-09-06 18:34
毛会懂
阅读(782)
推荐(0) 编辑