"vscode:/vscode.git/clone" did not exist on "26a2dcb936aa10eee5988dc9af2ec0b8631b6f4f"
Correct bytes_per_key computing. (#12897)
Change the calculation method of bytes_per_key to make it closer to the true average key size. The calculation method is as follows: mh->bytes_per_key = mh->total_keys ? (mh->dataset / mh->total_keys) : 0;
Please register or sign in to comment