SQLite3、FTS3 和停用词

发布于 2024-11-14 17:33:23 字数 88 浏览 3 评论 0原文

在构建虚拟 FTS3 表期间,如何防止 SQLite3 不对某些关键字或“停用词”建立索引?

我不想索引的示例包括“is”、“the”、“a”等。

How do you prevent SQLite3 from not indexing certain key words, or "stop-words", during the build of a virtual FTS3 table?

Examples I'd like to not index include "is", "the", "a" etc.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

九厘米的零° 2024-11-21 17:33:23

不幸的是,没有内置的分词器来处理停止词,因此您需要在 C 中实现自己的分词器并手动从列表中过滤掉停止词,将预分词/预过滤的文本插入相关的 FTS 表列或者使用有点复杂的方案,将文本插入 FTS 列,在标记化后将其取回,对其进行过滤,然后更新列值。

Unfortunately there is no built in tokenizer that handles stop words, so you will either need to implement your own tokenizer in C and filter out the stop words from the list manually, insert pre-tokenized/pre-filtered text into the relevant FTS table column or use a somewhat convoluted scheme where you insert the text into the FTS column, fetch it back after its been tokenized, filter it and then update the column value.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文