Memory mapping a file for reading sounds nice: turn inconvenient read calls and manual buffering into just simple indexing of a memory… but it does blocking IO under the hood, turn a &[u8]
byte arrays into an async hazard and making “concurrent” async code actually run sequentially!
Keep reading