使用 Whoosh 进行即时搜索 - 使用 Whoosh 输出 JSON 结果来索引和搜索 MySQL 表
我想使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Whoosh Results 对象基本上是一个字典列表。从 示例 中:
您可以非常轻松地将其转换为 JSON:
The Whoosh Results object is basically a list of dictionaries. From the examples:
You could very easily turn this into JSON: