我可以使用 Django 1.1 和 django-search-lucene 进行全文搜索吗?如果可以,我可以参考哪些资源/链接/文档来启动并运行它?
一点背景知识:
- 我想使用 Django Search with Lucene
- 我有 Django 1.1 安装了 Python 2.5
- 正在使用 MySQL 5.1
- 我的本地计算机运行的是 Windows Vista x64,但我们将部署到 Red Hat Linux
- 是的,我希望现在我正在运行 Linux。
A little background:
- I want to use Django Search with Lucene
- I have Django 1.1 w/ Python 2.5 installed
- MySQL 5.1 is being used
- My local machine is running Windows Vista x64, but we will deploy to Red Hat Linux
- Yes, I wish that right about now I was running Linux.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我推荐 Apache SOLR,它构建在 Lucene 之上。主要优点是它公开了易于使用的 API,并且可以返回本机 Python 对象。以下是如何从 Python 调用它的示例:
I would recommend Apache SOLR, which is built on top of Lucene. The primary advantage is that it exposes an easy to use API, and can return a native Python object. Here is an example of how to call it from Python: