Package spullara.util

Examples of spullara.util.Benchmarker


import java.util.concurrent.atomic.AtomicInteger;

public class BenchmarkTest {
    @Test
    public void testVsFor() throws Exception {
        Benchmarker bm = new Benchmarker(100000);
        List<String> list = new ArrayList<>();
        for (int i = 0; i < 100000; i++) {
            list.add("foorbar" + i);
        }
        AtomicInteger ai = new AtomicInteger();
        bm.execute("for loop", () -> {
            int i = 0;
            for (String s : list) {
                if (s.endsWith("1")) {
                    i++;
                }
            }
            ai.addAndGet(i);
        });
        bm.execute("sequential stream", () -> {
            ai.addAndGet((int) list.stream().filter(v -> v.endsWith("1")).count());
        });
        bm.execute("parallel stream", () -> {
            ai.addAndGet((int) list.stream().parallel().filter(v -> v.endsWith("1")).count());
        });
        bm.report();
    }
View Full Code Here

TOP

Related Classes of spullara.util.Benchmarker

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.