What Lang: Java + MySql
What I have: I have a data class that stores (id, firstName, lastName, workingHours). I fetch this information from database and store in data class. This data class contains many duplicates, for example, each employe (with same first and last name) can work for different hours, for example,
peter nick 4
peter nick 2
peter nick 8
What I am trying to do: I want to remove duplicate and store all the hours as an array or csv For example
peter nick [4,2,8]
There are over 5 million records in database, I tried to use some database quiries but it takes ages :(. I thought it would be fast if I load all data in memory and perform the task. I have 10GB RAM.
How can I acomplish this with best performance?
Thanks