使用 Whoosh 进行即时搜索 - 使用 Whoosh 输出 JSON 结果来索引和搜索 MySQL 表

发布于 2024-11-16 05:43:08 字数 173 浏览 6 评论 0原文

我想使用 Whoosh 为 MySQL 表建立索引并创建即时搜索页面,因此我需要将 Whoosh 搜索的结果采用 JSON 格式。是否有一个脚本或一个项目已经实现了这个?我尝试过搜索,但只找到 Haystack 搜索 Django。

如果没有,我可以获得一些广泛的指导,我应该如何去做这件事。

谢谢。

I want to index a MySQL table using Whoosh and create an instant search page, so I need the results of the Whoosh search to be in JSON. Is there a script or a project that implements this already? I've tried searching but I only find Haystack search for Django.

If not can I get some broad pointers how I should go about doing this.

Thanks.

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

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

发布评论

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

评论(1

梦境 2024-11-23 05:43:08

Whoosh Results 对象基本上是一个字典列表。从 示例 中:

>>> # Show the best hit's stored fields
>>> results[0]
{"title": u"Hello World in Python", "path": u"/a/b/c"}
>>> results[0:2]
[{"title": u"Hello World in Python", "path": u"/a/b/c"}, {"title": u"Foo", "path": u"/bar"}]

您可以非常轻松地将其转换为 JSON:

import json
def results2json(results):
   return json.dumps([r for r in results])

The Whoosh Results object is basically a list of dictionaries. From the examples:

>>> # Show the best hit's stored fields
>>> results[0]
{"title": u"Hello World in Python", "path": u"/a/b/c"}
>>> results[0:2]
[{"title": u"Hello World in Python", "path": u"/a/b/c"}, {"title": u"Foo", "path": u"/bar"}]

You could very easily turn this into JSON:

import json
def results2json(results):
   return json.dumps([r for r in results])
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文