Hello.
I have a big file that cannot be all loaded in memory but I want to read chunks of it on request. I have multiple requests (some of them "in the same time") of users that must load some data that I have stored for them. Users send their requests over UDP and I wondered if I should read/write the chunks of data in the file concurrently on some threads or Queue the requests and read/write them in sequence.
Thanks.