如何在mysql中访问反向索引

时间:2014-12-12 16:08:24

标签: mysql inverted-index

我正在构建一些使用广泛倒排索引的程序。 在sqlite3中通过FTS引擎我可以访问反向索引 fts4aux,就像那样(取自fts4教程)

##############
SELECT term, col, documents, occurrences FROM ft_terms
--     apple       |  *  |  1  |  1
--     apple       |  0  |  1  |  1
--     banana      |  *  |  2  |  2
--     banana      |  0  |  2  |  2
--     cherry      |  *  |  3  |  3
--     cherry      |  0  |  1  |  1
--     cherry      |  1  |  2  |  2
--     date        |  *  |  1  |  2
--     date        |  0  |  1  |  2
--     elderberry  |  *  |  1  |  2
--     elderberry  |  0  |  1  |  1
--     elderberry  |  1  |  1  |  1
--

###########

如果有人知道如何使用mysql引擎,我真的很感激。 非常感谢你。

0 个答案:

没有答案