摘要:序是一款對并發數據結構進行增強的并發工具,主要提供了以及的增強數據結構。只有幾個方法對比主要是操作之后沒有立即返回是對的增強,對多的支持以及高并發更新提供更好的性能。是對的簡單包裝以支持的接口。
序
JCTools是一款對jdk并發數據結構進行增強的并發工具,主要提供了map以及queue的增強數據結構。原來netty還是自己寫的MpscLinkedQueueNode,后來新版本就換成使用JCTools的并發隊列了。
增強mapConcurrentAutoTable(后面幾個map/set結構的基礎)
NonBlockingHashMap
NonBlockingHashMapLong
NonBlockingHashSet
NonBlockingIdentityHashMap
NonBlockingSetInt
增強隊列SPSC - Single Producer Single Consumer (Wait Free, bounded and unbounded)
MPSC - Multi Producer Single Consumer (Lock less, bounded and unbounded)
SPMC - Single Producer Multi Consumer (Lock less, bounded)
MPMC - Multi Producer Multi Consumer (Lock less, bounded)
mavenConcurrentAutoTableorg.jctools jctools-core 2.1.0
替代AtomicLong,專門為高性能的counter設計的。只有幾個方法
public void add( long x ); public void decrement(); public void increment(); public void set( long x ); public long get(); public int intValue(); public long longValue(); public long estimate_get();
對比AtomicLong主要是操作之后沒有立即返回
public final long incrementAndGet(); public final long decrementAndGet()NonBlockingHashMap
NonBlockingHashMap是對ConcurrentHashMap的增強,對多CPU的支持以及高并發更新提供更好的性能。
NonBlockingHashMapLong是key為Long型的NonBlockingHashMap。
NonBlockingHashSet是對NonBlockingHashMap的簡單包裝以支持set的接口。
NonBlockingIdentityHashMap是從NonBlockingHashMap改造來的,使用System.identityHashCode()來計算哈希
NonBlockingSetInt是一個使用CAS的簡單的bit-vector
原來是
// --- hash ---------------------------------------------------------------- // Helper function to spread lousy hashCodes. Throws NPE for null Key, on // purpose - as the first place to conveniently toss the required NPE for a // null Key. private static final int hash(final Object key) { int h = key.hashCode(); // The real hashCode call h ^= (h>>>20) ^ (h>>>12); h ^= (h>>> 7) ^ (h>>> 4); h += h<<7; // smear low bits up high, for hashcodes that only differ by 1 return h; }
改為
// --- hash ---------------------------------------------------------------- // Helper function to spread lousy hashCodes private static final int hash(final Object key) { int h = System.identityHashCode(key); // The real hashCode call // I assume that System.identityHashCode is well implemented with a good // spreader, and a second bit-spreader is redundant. //h ^= (h>>>20) ^ (h>>>12); //h ^= (h>>> 7) ^ (h>>> 4); return h; }doc
JCTools
Java Concurrent Counters By Numbers
Lock Free Queues Index
135 Million messages a second between processes in pure Java
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/70324.html
摘要:服務本身是一個,開起的線程數為,再加上一些其他線程,總的線程數不會超過服務內自己沒有顯示創建線程或者使用線程池。問題解決找到所在后,結局方案很簡單,只需將的通過單例的方式注入到服務中,即可解決堆外內存泄漏的問題。 內存泄漏Bug現場 一個做BI數據展示的服務在一個晚上重啟了5次,由于是通過k8s容器編排,服務掛了以后會自動重啟,所以服務還能繼續提供服務。 第一時間先上日志系統查看錯誤日...
摘要:最近有國外網站對多個互聯網安全博客做了相關排名,小編整理其中排名前的安全博客,希望能給大家帶來一些幫助。文章更新頻率篇周地址簡介谷歌在互聯網安全的新聞和見解。其安全部分致力于分析最新的惡意軟件威脅和漏洞。 如果你是網絡安全從業人員,其中重要的工作便是了解安全行業的最新資訊以及技術趨勢,那么瀏覽各大安全博客網站或許是信息來源最好的方法之一。最近有國外網站對50多個互聯網安全博客做了相關排...
閱讀 1702·2021-11-18 10:02
閱讀 2218·2021-11-15 11:38
閱讀 2666·2019-08-30 15:52
閱讀 2190·2019-08-29 14:04
閱讀 3231·2019-08-29 12:29
閱讀 2086·2019-08-26 11:44
閱讀 994·2019-08-26 10:28
閱讀 830·2019-08-23 18:37