compass
compass copied to clipboard
loadLayers in a more space efficient manner
This very large trees loading layer files can result in OOM exceptions.
This is due to loading files as a whole using Files.readAllLines().
Proposed changes:
- pre-allocate lists, based on known layer sizes (1,2,4,8, ...)
- load lines in batches, not the whole file at once.