Scala file reading performance: Line counting algorithms
Scala file reading performance: Line counting algorithms By Alvin Alexander. Last updated: July 28 2019 Out of curiosity about Scala’s file-reading performance, I decided to write a “line count”...
View ArticleHow to open and read text files in Scala
How to open and read text files in Scala By Alvin Alexander. Last updated: October 20 2019 This is an excerpt from the Scala Cookbook (partially modified for the internet). This is Recipe 12.1, “How...
View ArticleScala code to read a text file to an Array (or Seq)
Scala code to read a text file to an Array (or Seq) By Alvin Alexander. Last updated: October 20 2019 As a quick note, I use code like this read a text file into an Array, List, or Seq using Scala:...
View ArticleFive good ways (and two bad ways) to read large text files with Scala
Five good ways (and two bad ways) to read large text files with Scala By Alvin Alexander. Last updated: October 20 2019 I’m working on a small project to parse large Apache access log files, with the...
View Article