Hey Guys, I have a question. So I have a function which calls some threads to get data to be inserted into a region. It collects all the data and then puts them into a region with putAll.
Now my question is will it be faster to do it on the individual threads and just return that they have completed the task so that they can be sent back to the caller or the way we do it now I,e collect all data and insert is better ? Regards
