Package spullara.util

Examples of spullara.util.Benchmarker.execute()


        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++;
                }
View Full Code Here


                    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());
        });
View Full Code Here

            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
Copyright © 2018 www.massapi.com. 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.