|
Lift Framework example source code file (Benchmark.scala)
The Lift Framework Benchmark.scala source code
trait Benchmark {
def run(name: String, warmup: Int, count: Int)(f: => Any) = {
print("warmup... ")
repeat(warmup)(f)
System.gc
println("done")
val t = time {
repeat(count)(f)
}
println(name + "\t" + t + "ms")
}
def repeat(count: Int)(f: => Any) = {
var i = 0; while (i < count) {
f
i += 1
}
}
def time(f: => Any): Long = {
val start = System.currentTimeMillis
f
System.currentTimeMillis - start
}
}
Other Lift Framework examples (source code examples)Here is a short list of links related to this Lift Framework Benchmark.scala source code file: |
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.