Understanding application efficiency

An important part of every program is efficiency. In many cases, we can time our methods and find bottlenecks in our applications. Let's look at an example program that we will try and time afterwards.

We will have a look at parsing. In many real-life applications, we have to read data in specific formats and parse it to the objects in our code. For this example, we will have a small database of people represented in a JSON format:

[  {    "firstName": "Ivan",    "lastName": "Nikolov",    "age": 26  },  {    "firstName": "John",    "lastName": "Smith",    "age": 55  },  {    "firstName": "Maria",    "lastName": "Cooper",    "age": 19  }]

To represent this JSON in Scala, we have to define our model. It will be simple and contain only one ...

Get Scala Design Patterns - Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.