Could somebody be so kind as to point me towards some erlang code which allows me to time how long it takes to run certain pieces of code?
I havent seen an erlang library where this is available?
|
Could somebody be so kind as to point me towards some erlang code which allows me to time how long it takes to run certain pieces of code? I havent seen an erlang library where this is available? |
|||
|
|
|
You can use the This is used in Joe Armstrong's Programming Erlang book (p141). e.g.
In this example |
||||
|
|
There is the timer library; check tc/[1-3]. You can also use erlang:now/0 to collect timestamps and then calculate the duration (now_diff/2 is really useful for that). |
|||
|
|