Looking for information about the "structur" of FT-indexes I found the
following page:
http://dev.mysql.com/tech-resources/articles/full-text-revealed.html
The outhor pointed out, that these information may become obsolete in
newer versions. Is it correct, that MySQL 5 also has a simple sorted
list of
{
Word -- VARCHAR. a word within the text.
Count -- LONG. how many times word occurs in text.
}
{
Weight -- FLOAT. Our evaluation of the word's importance.
Rowid -- a pointer to the row in the data file.
}
? What is the sorting criteria?
Thanx,
Hagen