Closed casey closed 1 month ago
Sat ranges are stored in a compact 11 byte format in the index, but are loaded into a 16 byte (u64, u64). There are enough of them that this is slow, so we should probably just pass around the compact 11 byte format and only transform as needed.
(u64, u64)
Fixed in #3963.
Sat ranges are stored in a compact 11 byte format in the index, but are loaded into a 16 byte
(u64, u64)
. There are enough of them that this is slow, so we should probably just pass around the compact 11 byte format and only transform as needed.