how would you parse a giant textfile (10+GB) in kotlin?
i know i can process sections seperated by
\n\n
as single units
and could pass them to new coroutines there
i just have no idea how to do this without accidentally loading the whole file in memory to split it