skip to main content
Corticon Server: Integration & Deployment Guide : Performance and tuning guide : The Java clock
 

Try Corticon Now

The Java clock

Finally, whenever performance of Java applications needs to be measured in milliseconds, it should be remembered that Java is dependent upon the operating system's internal clock. And not all operating systems track time to equal degrees of granularity. The following excerpt from the Java JavaDoc explains:
public static long currentTimeMillis()
Returns the current time in milliseconds. Note that while the unit of time of the return value is a millisecond, the granularity of the value depends on the underlying operating system and may be larger. For example, many operating systems measure time in units of tens of milliseconds.
See the description of the class Date for a discussion of slight discrepancies that may arise between computer time and coordinated universal time (UTC).
Returns:
The difference, measured in milliseconds, between the current time and midnight, January 1, 1970 UTC.