Package org.alfresco.repo.search
Interface SearchEngineResultMetadata
-
- All Known Subinterfaces:
SearchEngineResultSet
- All Known Implementing Classes:
SolrJSONResultSet,SolrSQLJSONResultSet,SolrStatsResult
public interface SearchEngineResultMetadataAdditional metadata ops available forResultSetcoming from a search engine.- Since:
- 5.0
- Author:
- Gethin James
- See Also:
SearchEngineResultSet
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetNumberFound()Total number of items matching a the current query execution.LonggetQueryTime()Returns the query execution time, or put in other words, the amount of time the search engine spent for processing the request.
-
-
-
Method Detail
-
getQueryTime
Long getQueryTime()
Returns the query execution time, or put in other words, the amount of time the search engine spent for processing the request.- Returns:
- the query execution time
-
getNumberFound
long getNumberFound()
Total number of items matching a the current query execution.- Returns:
- the number of items in the search index that matched a query execution.
-
-