Benchmarking Scala Code with JMH
Creating the first Java Microbenchmark Harness (JMH) project using SBT. A quick hands-on lesson to integrate Java Microbenchmark Harness (JMH) with SBT.
Creating the first Java Microbenchmark Harness (JMH) project using SBT. A quick hands-on lesson to integrate Java Microbenchmark Harness (JMH) with SBT.
Creating the first JMH project. A quick hands-on lesson to learn about Java Microbenchmark Harness (JMH). The article helps you get started and configure JMH project.
Microbenchmarking with jvm is hard and should be avoided. An introduction to Microbenchmarking, when to use it and pitfalls to avoid.
Learn how to set sort the lists in Scala. The blog talks about the usage of sortWith and sortBy along with coding examples
Let's see how Scala supports variable arguments and repeated method parameters, and the conditions to consider when using them.
A quick tour of lazy evaluation to cover its benefits and drawbacks in Scala. This quick lesson in lazy evaluation covers its benefits and drawbacks your options to implement it in your Scala code.
If you're trying Scala out, see how closures work to bind free variables to function literals with some sample code. This is a quick hands-on tutorial on closures in Scala. It binds free variables ...
Interested in learning some finer points of the Scala language? Read on to get a quick overview of Scala's partial functions, and how they aid in development. This quick hands-on lesson on partial ...
This simple example of function currying shows a simple use case as well as code snippets to show how function currying saves time. This quick hands-on example of currying, article shows a simple u...
A great primer for Scala devs or functional programming buffs in general, check out how (and why) to make use of partially applied functions.