What's the best Django search app?
I'm building a Django project that needs search functionality, and until there's a django.contrib.search
, I have to choose a search app. So, which is the best? By "best" I mean...
Here are some apps I've heard of, please suggest others if you know of any:
I'd also like to avoid using a third-party search engine (like Google SiteSearch), because some of the data I'd like to index is for site members only and should not be public.
Check out Haystack Search - a new model based search abstraction layer that currently supports Xapian, Solr and Whoosh. Looks like it's well supported and documented.
Justin, I'd try djangosearch first: Jacob Kaplan-Moss (Django's lead developer) is working on it.
Potential hazards:
Potential benefits:
django.contrib.search
.” I am searching for the same thing, as are a lot of other people. Let's hope that django.contrib.search will be added soon.
In the meantime, this is what I found:
To me, most look quite complicated and, frankly, a little daunting to implement. I'd be interested to learn what you think of these.
链接地址: http://www.djcxy.com/p/53440.html上一篇: 有什么需要制作一个需要扩展的网站?
下一篇: 什么是最好的Django搜索应用程序?