You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Precompile record format, and batch load all records
Since each row/record has the same format every time, instead of a
regular unpack, precompile the format using struct.Struct to unpack
faster. Leads to roughly x1.33 speedup.
In addition, when users arent worried about memory (ie the "records"
method), we can exploit this by reading all records to memory at once.
Leads to 15-20x speedup.
0 commit comments