我可以使用 Django 1.1 和 django-search-lucene 进行全文搜索吗?如果可以,我可以参考哪些资源/链接/文档来启动并运行它?

发布于 2024-08-11 04:20:05 字数 389 浏览 5 评论 0原文

一点背景知识:

  • 我想使用 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 技术交流群。

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

发布评论

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

评论(1

夏了南城 2024-08-18 04:20:05

我推荐 Apache SOLR,它构建在 Lucene 之上。主要优点是它公开了易于使用的 API,并且可以返回本机​​ Python 对象。以下是如何从 Python 调用它的示例:

params = urllib.urlencode({        
    "rows": "100",       
    "fl": "id,name,score,address,city,state,zip",        
    "wt": "python",        
    "q": "+name:Foo +city:Boston"
})        

request = urllib2.urlopen(urllib2.Request("http://locahost:8983/solr/select", params))
response = ast.literal_eval(request.read())
request.close()            
return response["docs"] 

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:

params = urllib.urlencode({        
    "rows": "100",       
    "fl": "id,name,score,address,city,state,zip",        
    "wt": "python",        
    "q": "+name:Foo +city:Boston"
})        

request = urllib2.urlopen(urllib2.Request("http://locahost:8983/solr/select", params))
response = ast.literal_eval(request.read())
request.close()            
return response["docs"] 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文