INNER CODE UNIT · C#
RunTopReputationScanAsync
ZoneTree/ZoneTree · benchmarks/zonetree-scan-lab/Program.cs:391
public Task RunTopReputationScanAsync() =>
ScanExecution.RunPartitionedAsync(
"scan top reputation",
config.ScanCount,
config.Parallelism,
(_, count, checksum) =>
{
for (var i = 0; i < count; i++)
{
ScanStringIndexValues(
ReputationIndex!,
"",
_ => true,
checksum);
}
});
public Task RunTopReputationQueryAsync() =>