I have this scenario:
There is a huge text file around 500MB ,by whose contents I have to make reports.Each
line have some values separated by a space.out
of several values, two of which are URL and RESPONSETIME. If a url's response time is more that 8000ms I have to make a report of how many times overall that url was hit, and out of them how many times response time was greater than 8000ms, so final report will look something like this
URL total hits delayed response
url1 100 5
url2 1000 18
I have done my part of search on google so don't suggest me that. Using a list will not be a solution because you can't modify the objects of a list while iterating through it.
Anyone please suggest ideas.