sharkdp / binocle

a graphical tool to visualize binary data
Apache License 2.0
1.12k stars 32 forks source link

Do not load the entire file into memory #21

Closed sharkdp closed 3 years ago

sharkdp commented 3 years ago

This obviously causes OOM problems with very large files.

Maybe we can use mmap instead. But I'm not sure if we would sacrifice OS independence.

toolCHAINZ commented 3 years ago

I made a PR to attempt to fix this: #29