Module Values.IndexStatisticsSource

Provides information about the number of documents and the number of questions and answers in an index.

Sourcetype nonrec t = {
  1. faqStatistics : FaqStatistics.t option;
    (*

    The number of question and answer topics in the index.

    *)
  2. textDocumentStatistics : TextDocumentStatistics.t option;
    (*

    The number of text documents indexed.

    *)
}
Sourceval make : ?faqStatistics:??? -> ?textDocumentStatistics:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Integer of IndexedQuestionAnswersCount.t | `Long of IndexedTextBytes.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t