MySQL 9.1.0
Source Code Documentation
|
To determine the word frequency per document. More...
Public Attributes | |
fts_string_t | word |
Word for which we need the freq, it's allocated on the query heap. More... | |
ib_rbt_t * | doc_freqs |
RB Tree for storing per document word frequencies. More... | |
uint64_t | doc_count |
Total number of documents that contain this word. More... | |
double | idf |
Inverse document frequency. More... | |
To determine the word frequency per document.
uint64_t fts_word_freq_t::doc_count |
Total number of documents that contain this word.
ib_rbt_t* fts_word_freq_t::doc_freqs |
RB Tree for storing per document word frequencies.
The elements are of type fts_doc_freq_t
double fts_word_freq_t::idf |
Inverse document frequency.
fts_string_t fts_word_freq_t::word |
Word for which we need the freq, it's allocated on the query heap.