【Developer Log】Thread-safe

웹 에서 다 중 스 레 드, 다 중 스 레 드 로 특정한 Collection 을 읽 고 쓰 면 thread - safe 문제 와 관련 될 수 있 습 니 다. 만약 에 collection 이 조작 할 때 synchronize 를 사용 하면 이것 이 스 레 드 안전 입 니 다. 그러나 이것 은 성능 대 가 를 치 러 야 하고 thread - safe 를 적용 하지 않 아 도 되 지만 수요 에 따라 동기 화 여 부 를 스스로 고려 해 야 합 니 다.
... 에 있다http://www.asjava.com/core-java/thread-safe-hash-map-in-java-and-their-performance-benchmark/스 레 드 안전 에 대한 상세 한 분석 이 있 습 니 다. entry 를 추가 삭제 하 는 것 은 스 레 드 안전 을 설계 하 는 것 입 니 다. key 에 대응 하 는 value 만 수정 하 는 것 은 고려 범위 에 속 하지 않 습 니 다. (이것 은 원자 조작 과 관련 이 있 을 수 있 으 므 로 걱정 하지 않 아 도 됩 니 다)
What does the thread safe Map means? If multiple threads access a hash map concurrently, and at least one of the threads modifies the map structurally, it must be synchronized externally to avoid an inconsistent view of the contents. (A structural modification is any operation that adds or deletes one or more mappings; merely changing the value associated with a key that an instance already contains is not a structural modification.)
List 에 대해 서 는 Vector 는 스 레 드 가 안전 하지만 Array List 는 그렇지 않 습 니 다. javadoc 에 서 는 Vector 를 이렇게 설명 합 니 다.
As of the Java 2 platform v1.2, this class was retrofitted to implement theList interface, making it a member of theJava Collections Framework. Unlike the new collection implementations, Vector is synchronized. If a thread-safe implementation is not needed, it is recommended to useArrayList in place of Vector .
Map 에 대해 서 는 Hashtable 은 스 레 드 가 안전 하지만 HashMap 은 그렇지 않 습 니 다. 그러나 오래된 Hashtable 을 사용 하면 성능 이 정말 좋 지 않 을 때 가 있 습 니 다. 또한 Hashtable 은 null 을 값 으로 허용 하지 않 고 HashMap 은 허용 합 니 다. 우 리 는 다음 두 가지 방식 으로 실현 할 수 있 습 니 다. 예 를 들 어 대체 에 대해 서 는.
Map threadSafeMap = new Hashtable();
방식 1: Collections. synchronizedMap 사용
Map<String,Integer>threadSafeMap = Collections.synchronizedMap(new HashMap<String, Integer>());

방식 2: 자바 1.5 에 도 입 된 Concurrent HashMap
Map<String,Integer> threadSafeMap = new ConcurrentHashMap<String, Integer>();

근거http://www.asjava.com/core-java/thread-safe-hash-map-in-java-and-their-performance-benchmark/의 테스트 데 이 터 는 ConcurrentHashMap 의 효율 이 더욱 높 습 니 다. 따라서 thread - safe 의 사용 이 필요 합 니 다. 가능 한 한 ConcurrentHashMap 을 사용 해 야 합 니 다.
 
개발 로그

좋은 웹페이지 즐겨찾기