Hi
I would like to read big files with several threads without blocking so that each thread can work on a region of the file without locking the whole file. I have looked for solutions for days… A FileChannel has no configureBlocking method, selectors can be used only with socket channels… FileChannel.map() seems to be blocking the whole file too. How can I map a region of a file in memory and create this mapping by using several threads?