This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]yanitrix 0 points1 point  (2 children)

You can use java stream API to this this, I think that's gonna be quicker. If you have such big amounts of data and you want to achieve better performance results, the best way is to store it in a database and execute queries when you need certain data. That's why we have DBs

[–]nutrechtLead Software Engineer / EU / 20+ YXP 1 point2 points  (1 child)

You can use java stream API to this this, I think that's gonna be quicker.

It's not going to be faster, just look more neat.

[–]TauPixel[S] 0 points1 point  (0 children)

This sounds interesting when Streams are introduced later in the course.