In my java app deployed on tomcat, about 500K items (can go even upwards) are added to ArrayList. Then, these list(s) are iterated to check some conditions.
Que- For this scenario, would using LinkedList gain performance?
Any pointers from practical experience for volume of data exceeding 200K items~ 1 million items.
Mostly list of strings and objects having multiple properties mostly string (Basically get data from DB, convert it to Java objects and send it over via HTTP) If size of data is expected to stay within 100K or less, would there be a difference