Giter Site home page Giter Site logo

jbench's Introduction

jbench

A simple Java benchmarking timer utility that functions more or less like a stopwatch.

Maven dependency

<dependency>
    <groupId>io.zoopaz</groupId>
    <artifactId>jbench</artifactId>
    <version>1.0.0</version>
</dependency>

Usage

If you want to time a segment of code you may do the following. Instantiating Timer is equivalent to Timer.start().

Timer t = new Timer();

String val = searchForStuff();

System.out.println("It took " + t.getElapsed(TimeUnit.SECONDS) 
        + " seconds to search for stuff.");

The above example times a single method call, but it may be useful to execute this method several times and get the average time per "lap".

For example, let's see how long it takes to search for stuff on average for 1000 calls.

Timer t = new Timer();

for (int i = 0; i < 1000; i++) {
    String val = searchForStuff();
    t.lap();
}

System.out.println("It took " + t.getLapAverage(TimeUnit.SECONDS) 
        + " seconds on average to search for stuff.");

In some cases one may want to momentarily pause the timer.

Timer t = new Timer();

String val = searchForStuff();

t.pause();

storeValInDatabase(val);

t.resume();

doMoreStuffThatNeedsToBeTimed();

System.out.println("It took " + t.getElapsed(TimeUnit.SECONDS) 
        + " seconds to search and more.");

With the introduction of start() and stop() one no longer needs to immediately get the elapsed time.

Timer t = new Timer();

t.start();

String val = searchForStuff();

t.pause();

storeValInDatabase(val);

t.resume();

doMoreStuffThatNeedsToBeTimed();

t.stop();

doStuff();
doMoreStuff();

System.out.println("It took " + t.getElapsed(TimeUnit.SECONDS) 
        + " seconds to search and more. This time we stopped the clock, did"
        + " some stuff, and then got the elapsed time.");

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.