What is the Mu (μ) symbol mean when looking at some time based views
Asked Answered
R

3

8

When I'm profiling I can see some data with ms (for milliseconds) but I also see μs. What does μs mean in JProfiler?

Reinold answered 15/3, 2012 at 13:6 Comment(1)
Also worth noting that ns is nano-second or 1/1000th of a μs. e.g. System.nanoTime()Manzanilla
M
15

It means microseconds, which is 1/1000th of a millisecond (1000 μs = 1 ms). The Greek letter mu (μ) is the SI prefix for micro-.

Masoretic answered 15/3, 2012 at 13:8 Comment(3)
Ahh, Thanks. Here's the wikipedia link for those interested. en.wikipedia.org/wiki/Microsecond Is there a way to show ms for everything?Reinold
No idea about that, as I don't use JProfiler (not really a Java programmer here ;)Masoretic
@DanHoward You can open the view settings (View->View settings in the menu or the corresponding tool bar button) to change the way times are displayed in JProfiler.Wandering
H
4

As others have said it's 1000 times smaller than a millisecond, and is a standard measurement (not just for jprofiler.)

There's a nice table here that lists the various units, microseconds included!

Horbal answered 15/3, 2012 at 13:12 Comment(0)
O
0

Micro seconds = 1000th of a milli second

Oscan answered 15/3, 2012 at 13:8 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.