Wesley13 Wesley13
4年前
janus
janusgateway会话与消息/VideoRoom插件https://github.com/meetecho/janusgateway(https://www.oschina.net/action/GoToLink?urlhttps%3A%2F%2Fgithub.com%2F
Stella981 Stella981
4年前
Solon rpc 之 SocketD 协议
Solonrpc之SocketD协议系列Solonrpc之SocketD协议概述(https://my.oschina.net/noear/blog/4888445)Solonrpc之SocketD协议消息上报模式(https://my.oschina.net/noear/bl
Stella981 Stella981
4年前
Spring 操作 Redis Repositoy
Spring操作RedisRepositoy操作方式(https://www.oschina.net/action/GoToLink?urlhttps%3A%2F%2Fsuveng.blog.csdn.net%2Farticle%2Fdetails%2F102669253%23%25
Stella981 Stella981
4年前
Elasticsearch源码分析—线程池(十一) ——就是从队列里处理请求
Elasticsearch源码分析—线程池(十一)(https://www.oschina.net/action/GoToLink?urlhttps%3A%2F%2Fwww.felayman.com%3A443%2Farticles%2F2017%2F11%2F10%2F1510291570687.html)
Stella981 Stella981
4年前
RocketMQ之Pull消费者客户端启动
Pull消费者客户端(主动拉取消息的消费者)即构造了DefaultMQPullConsumer对象,DefaultMQPullConsumer继承了ClientConfig类。我们先看其构造方法javaviewplaincopypublicDefaultMQPullConsumer(finalStringconsumer
Wesley13 Wesley13
4年前
Using Redis For Session Storage
Afewdaysback,IwasjustmessingaroundwithRedis(https://www.oschina.net/action/GoToLink?urlhttp%3A%2F%2Fredis.io%2F)andallofasuddentherewasanecessitywhereIhad
Stella981 Stella981
4年前
Redis 缓存问题(13)
缓存使用场景针对读多写少的高并发场景,我们可以使用缓存来提升查询速度。当我们使用Redis作为缓存的时候,一般流程是这样的:!(https://oscimg.oschina.net/oscnet/upeaebdc309cb8e78cbf34403e980ce4ef402.png)因为这些数据是很少修改的,所以在绝大部分的情况下可
Wesley13 Wesley13
4年前
20张图揭开「队列」的迷雾,一目了然!
!(https://imgconvert.csdnimg.cn/aHR0cHM6Ly9tbWJpei5xcGljLmNuL21tYml6X2pwZy82em04RnF6RTdSeWliZ3B5dUwwclFQQmV5M1NsZWVNaktsbmpzY1VCR2hRSTY5R21qWnBnQ2t2VGZSRVhVaWFxOEE1NnRCaWJ3bUdWV2
javalover123 javalover123
2年前
spring boot使用Java并行流发送kafka消息报错
springbootmavenplugin打包,使用Java并行流多线程发送kafka消息,刚开始发送时报错,Invalidvalueorg.apache.kafka.common.serialization.StringSerializerforconfigurationkey.serializer:Classorg.apache.kafka.common.serialization.StringSerializercouldnotbefound.
贾蔷 贾蔷
9个月前
力扣933题:队列的妙用:如何高效统计最近请求
题目重解:我们需要设计一个能统计最近3000毫秒内请求次数的系统。每当新的请求到来时,它会带有时间戳t,我们需要返回过去3000毫秒内(包括当前)发生的请求总数。这就像是在时间轴上维护一个滑动窗口,只关注最近3秒内的活动。解题思路解析:1.初始化:创建空队