GitHub

View djspiewak's full-sized avatar

Daniel Spiewak djspiewak

Sponsors

@TonioGela

@DougC

Organizations

@typelevel @quasar-analytics

Block or report djspiewak

Pinned Loading

  1. 1

    # Quick Tips for Fast Code on the JVM

    2

    
                  

    3

    I was talking to a coworker recently about general techniques that almost always form the core of any effort to write very fast, down-to-the-metal hot path code on the JVM, and they pointed out that there really isn't a particularly good place to go for this information.  It occurred to me that, really, I had more or less picked up all of it by word of mouth and experience, and there just aren't any good reference sources on the topic.  So… here's my word of mouth.

    4

    
                  

    5

    This is by no means a comprehensive gist.  It's also important to understand that the techniques that I outline in here are not 100% absolute either.  Performance on the JVM is an incredibly complicated subject, and while there are rules that almost always hold true, the "almost" remains very salient.  Also, for many or even most applications, there will be other techniques that I'm not mentioning which will have a greater impact.  JMH, Java Flight Recorder, and a good profiler are your very best friend!  Measure, measure, measure.  Then measure again.
  2. 1

    # Thread Pools

    2

    
                  

    3

    Thread pools on the JVM should usually be divided into the following three categories:

    4

    
                  

    5

    1. CPU-bound
  3. A parser combinator library based on the GLL algorithm

    Scala 313 26

  4. shims shims Public archive

    Seamless interop layer between cats and scalaz

    Scala 173 15

  5. An sbt plugin which makes it easier to build with GitHub Actions

    Scala 199 65

  6. The pure asynchronous runtime for Scala

    Scala 2.2k 578

Read the original on github.com ↗