-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathBenchmark.java
More file actions
62 lines (54 loc) · 2.16 KB
/
Copy pathBenchmark.java
File metadata and controls
62 lines (54 loc) · 2.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import java.io.File;
import java.io.IOException;
import java.net.InetAddress;
import java.util.Map;
import java.util.Random;
import com.maxmind.db.CHMCache;
import com.maxmind.db.InvalidDatabaseException;
import com.maxmind.db.NoCache;
import com.maxmind.db.NodeCache;
import com.maxmind.db.Reader;
import com.maxmind.db.Reader.FileMode;
public class Benchmark {
private final static int COUNT = 1000000;
private final static int WARMUPS = 3;
private final static int BENCHMARKS = 5;
private final static boolean TRACE = false;
public static void main(String[] args) throws IOException, InvalidDatabaseException {
File file = new File(args.length > 0 ? args[0] : "GeoLite2-City.mmdb");
System.out.println("No caching");
loop("Warming up", file, WARMUPS, NoCache.getInstance());
loop("Benchmarking", file, BENCHMARKS, NoCache.getInstance());
System.out.println("With caching");
loop("Warming up", file, WARMUPS, new CHMCache());
loop("Benchmarking", file, BENCHMARKS, new CHMCache());
}
private static void loop(String msg, File file, int loops, NodeCache cache) throws IOException {
System.out.println(msg);
for (int i = 0; i < loops; i++) {
Reader r = new Reader(file, FileMode.MEMORY_MAPPED, cache);
bench(r, COUNT, i);
}
System.out.println();
}
private static void bench(Reader r, int count, int seed) throws IOException {
Random random = new Random(seed);
long startTime = System.nanoTime();
byte[] address = new byte[4];
for (int i = 0; i < count; i++) {
random.nextBytes(address);
InetAddress ip = InetAddress.getByAddress(address);
Map<String, Object> t = r.get(ip, Map.class);
if (TRACE) {
if (i % 50000 == 0) {
System.out.println(i + " " + ip);
System.out.println(t);
}
}
}
long endTime = System.nanoTime();
long duration = endTime - startTime;
long qps = count * 1000000000L / duration;
System.out.println("Requests per second: " + qps);
}
}