发布了 3 篇内容
共 4765字, 被阅读 26次
获得了 0 次赞同
获得了 0次喜欢, 获得了 0 次收藏
参与了 0 次互动
互动包含发布评论、点赞评论、参与投票等
Java 线程池执行器的饱和策略
通过传递一个 RejectedExecutionHandler 类的实例给执行器的构造器,我们可以修改 Java 中线程池执行器的饱和策略。
使用 Nginx 作为 MySQL 的 TCP 负载均衡器
参考: https://abhizer.com/using-nginx-as-a-tcp-load-balancer-for-your-mysql-or-any-other-database/
Java 中让两个线程交替执行的实现方式
Question: There're 2 threads, one prints 'A', 'B' and 'C', the other prints '1', '2' and '3', how to make them print "1A2B3C"?