Each time you perform a search in an index, a report is generated for that search. An array of search reports can be obtained by calling GetSearchReports method of the Index class. Reports are stored in the index only while the index is loaded into RAM for use. If you reload the index, the reports will not be restored.
Each index search report contains the following information:
The start time of the search;
The end time of the search;
The search duration;
The number of documents found;
The total number of occurrences found;
The search query;
The search options.
The following example demonstrates how to get search reports from an index.
C#
stringindexFolder=@"c:\MyIndex\";stringdocumentsFolder=@"c:\MyDocuments\";// Creating an index in the specified folderIndexindex=newIndex(indexFolder);// Indexing documents from the specified folderindex.Add(documentsFolder);// Searching in indexSearchResultresult1=index.Search("Einstein");SearchResultresult2=index.Search("\"Theory of Relativity\"");// Getting search reportsSearchReport[]reports=index.GetSearchReports();// Printing reports to the consoleforeach(SearchReportreportinreports){Console.WriteLine("Query: "+report.TextQuery);Console.WriteLine("Time: "+report.StartTime);Console.WriteLine("Duration: "+report.SearchDuration);Console.WriteLine("Documents: "+report.DocumentCount);Console.WriteLine("Occurrences: "+report.OccurrenceCount);Console.WriteLine();}
More resources
GitHub examples
You may easily run the code from documentation articles and see the features in action in our GitHub examples: