SQLite FTS3 模拟 LIKE somestring%

发布于 2024-08-30 07:50:37 字数 308 浏览 5 评论 0原文

我正在编写一个字典应用程序,需要在打字时进行通常的单词建议。

LIKE somestring% 相当慢(在约 100k 行表上约 1300 毫秒),所以我转向了 FTS3。

问题是,我还没有找到从字符串开头搜索的合理方法。
现在我正在执行类似的查询

SELECT word, offsets(entries) FROM entries WHERE word MATCH '"chicken *"';

,然后解析代码中的偏移字符串。

还有更好的选择吗?

I'm writing a dictionary app and need to do the usual word suggesting while typing.

LIKE somestring% is rather slow (~1300ms on a ~100k row table) so I've turned to FTS3.

Problem is, I haven't found a sane way to search from the beginning of a string.
Now I'm performing a query like

SELECT word, offsets(entries) FROM entries WHERE word MATCH '"chicken *"';

, then parse the offsets string in code.

Are there any better options?

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

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

发布评论

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

评论(1

分開簡單 2024-09-06 07:50:37

,请确保在字段word上设置索引并使用

word >= 'chicken ' AND word < 'chicken z'

而不是LIKE或MATCH或GLOB

Yes, make sure to set the index on field word and use

word >= 'chicken ' AND word < 'chicken z'

instead of LIKE or MATCH or GLOB

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