提交 f167e080 编写于 作者: sq3536's avatar sq3536

修复lmax-disruptor cpu占用过高问题

上级 888520a1
package cn.ibizlab.core.util.config;
import com.lmax.disruptor.SleepingWaitStrategy;
import com.lmax.disruptor.WaitStrategy;
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
public class JobsConfig {
@Bean
public WaitStrategy waitStrategy() {
return new SleepingWaitStrategy(200,1000*1000*10);
}
}
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册