"vscode:/vscode.git/clone" did not exist on "338cd4835dd163c5f54f63db59e41ea1ebbc900f"
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