Is it possible to see the actual content of a FULLTEXT INDEX
in MySQL? Or even query the index directly (like SELECT words FROM table.fulltext_index
and it would return all indexed words, just to have a example)?
For a regular b-tree index on a scalar field this is not neccessary, because they are just the same values, just ordered to speed up lookups (basically). But in a fulltext index there's happening so much "language magic" that it's very hard to know what actually lands in the index when doing an INSERT
to the table.