Skip to content

Instantly share code, notes, and snippets.

@Gikkman
Gikkman / Map_RW_Performance_Test.java
Last active December 1, 2016 09:14
A test I wrote to compare read and write speeds of HashMap and ConcurrentHashMap.
import java.util.HashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Random;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ThreadLocalRandom;
public class ReadWriteTimeTest
{