SearchIndexStatistics Class
- java.
lang. Object - com.
azure. search. documents. indexes. models. SearchIndexStatistics
- com.
Implements
public final class SearchIndexStatistics
implements JsonSerializable<SearchIndexStatistics>
Statistics for a given index. Statistics are collected periodically and are not guaranteed to always be up-to-date.
Constructor Summary
Constructor | Description |
---|---|
SearchIndexStatistics(long documentCount, long storageSize) |
Creates an instance of Search |
Method Summary
Modifier and Type | Method and Description |
---|---|
static
Search |
fromJson(JsonReader jsonReader)
Reads an instance of Search |
long |
getDocumentCount()
Get the document |
long |
getStorageSize()
Get the storage |
Long |
getVectorIndexSize()
Get the vector |
Json |
toJson(JsonWriter jsonWriter) |
Methods inherited from java.lang.Object
Constructor Details
SearchIndexStatistics
public SearchIndexStatistics(long documentCount, long storageSize)
Creates an instance of SearchIndexStatistics class.
Parameters:
Method Details
fromJson
public static SearchIndexStatistics fromJson(JsonReader jsonReader)
Reads an instance of SearchIndexStatistics from the JsonReader.
Parameters:
Returns:
Throws:
getDocumentCount
public long getDocumentCount()
Get the documentCount property: The number of documents in the index.
Returns:
getStorageSize
public long getStorageSize()
Get the storageSize property: The amount of storage in bytes consumed by the index.
Returns:
getVectorIndexSize
public Long getVectorIndexSize()
Get the vectorIndexSize property: The amount of memory in bytes consumed by vectors in the index.
Returns:
toJson
Applies to
Azure SDK for Java