I am learning Java and have a pretty basic problem.
I am indexing some sites with a BufferedReader and storing the data in a MySQL-base. I do this for 30 sources every 15 seconds, which generate a lot of data.
Now I want to analyze this data. I am thinking of storing the data simultaneously in a HashMap which I will clear at the end of the day, every day.
But can you give me an example on how to create an object for 30 different sources?
Do I need 30 different HashMap or can I build a key like 'pathName+randomNumber'?
In the end I want to be able to locate the first entry in the HashMap for each source and the two latest entries thereby enabling me to see what the difference between these three are.
Please help. I have tried to look on the web but with no luck as I think the HashMap examples are always focused towards storing Objects, but not on how to create the objects you store in them... (yeah I know - it's a rookie question) ;)