// Copyright Epic Games, Inc. All Rights Reserved.
namespace EpicGames.Horde.Logs
{
///
/// Stats for a search
///
public class SearchStats
{
///
/// Number of blocks that were scanned
///
public int NumScannedBlocks { get; set; }
///
/// Number of bytes that had to be scanned for results
///
public int NumScannedBytes { get; set; }
///
/// Number of blocks that were skipped
///
public int NumSkippedBlocks { get; set; }
///
/// Number of blocks that had to be decompressed
///
public int NumDecompressedBlocks { get; set; }
///
/// Number of blocks that were searched but did not contain the search term
///
public int NumFalsePositiveBlocks { get; set; }
}
}