感受網絡上關於Django全文搜索的中文文章太少,而且講的也不是很到位,就是簡單介紹了怎麼配置,並無說這樣配置有什麼用,因此依然很迷茫。因此但願我這篇文章可以幫助到後來人。html
轉載說明來源 http://tenlee2012.github.io/2...添加全文搜索功能入門/python
haystack是django的開源搜索框架,該框架支持Solr, Elasticsearch, Whoosh, *Xapian*搜索引擎,不用更改代碼,直接切換引擎,減小代碼量。git
搜索引擎使用Whoosh,這是一個由純Python實現的全文搜索引擎,沒有二進制文件等,比較小巧,配置比較簡單,固然性能天然略低。github
中文分詞Jieba,因爲Whoosh自帶的是英文分詞,對中文的分詞支持不是太好,故用jieba替換whoosh的分詞組件。數據庫
其餘:Python 3.4.4, Django 1.8.3,Debian 4.2.6_3django
如今假設咱們的項目叫作Project
,有一個myapp
的app,簡略的目錄結構以下。api
- Project - Project - settings.py - blog - models.py
此models.py
的內容假設以下:網絡
from django.db import models from django.contrib.auth.models import User class Note(models.Model): user = models.ForeignKey(User) pub_date = models.DateTimeField() title = models.CharField(max_length=200) body = models.TextField() def __str__(self): return self.title
1. 首先安裝各工具session
pip install whoosh django-haystack jieba
配置Django項目的settings.py裏面的 INSTALLED_APPS
添加Haystack,例子:app
INSTALLED_APPS = [ 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', # Added. haystack先添加, 'haystack', # Then your usual apps... 本身的app要寫在haystakc後面 'blog', ]
本教程使用的是Whoosh
,故配置以下:
import os HAYSTACK_CONNECTIONS = { 'default': { 'ENGINE': 'haystack.backends.whoosh_backend.WhooshEngine', 'PATH': os.path.join(os.path.dirname(__file__), 'whoosh_index'), }, }
其中顧名思義,ENGINE
爲使用的引擎必需要有,若是引擎是Whoosh
,則PATH
必需要填寫,其爲Whoosh 索引文件的存放文件夾。
其餘引擎的配置見官方文檔
若是你想針對某個app例如mainapp
作全文檢索,則必須在mainapp
的目錄下面創建search_indexes.py
文件,文件名不能修改。內容以下:
import datetime from haystack import indexes from myapp.models import Note class NoteIndex(indexes.SearchIndex, indexes.Indexable): text = indexes.CharField(document=True, use_template=True) author = indexes.CharField(model_attr='user') pub_date = indexes.DateTimeField(model_attr='pub_date') def get_model(self): return Note def index_queryset(self, using=None): """Used when the entire index for model is updated.""" return self.get_model().objects.filter(pub_date__lte=datetime.datetime.now())
每一個索引裏面必須有且只能有一個字段爲document=True
,這表明haystack 和搜索引擎將使用此字段的內容做爲索引進行檢索(primary field)。其餘的字段只是附屬的屬性,方便調用,並不做爲檢索數據。
注意:若是使用一個字段設置了
document=True
,則通常約定此字段名爲text
,這是在SearchIndex
類裏面一向的命名,以防止後臺混亂,固然名字你也能夠隨便改,不過不建議改。
而且,haystack
提供了use_template=True
在text
字段,這樣就容許咱們使用數據模板
去創建搜索引擎索引的文件,使用方便(官方推薦,固然還有其餘複雜的創建索引文件的方式,目前我還不知道),數據模板的路徑爲yourapp/templates/search/indexes/yourapp/note_text.txt
,例如本例子爲blog/templates/search/indexes/blog/note_text.txt
文件名必須爲要索引的類名_text.txt
,其內容爲
{{ object.title }} {{ object.user.get_full_name }} {{ object.body }}
這個數據模板的做用是對Note.title
, Note.user.get_full_name
,Note.body
這三個字段創建索引,當檢索的時候會對這三個字段作全文檢索匹配。
在urls.py
中配置以下url信息,固然url路由能夠隨意寫。
(r'^search/', include('haystack.urls')),
其實haystack.urls
的內容爲,
from django.conf.urls import url from haystack.views import SearchView urlpatterns = [ url(r'^$', SearchView(), name='haystack_search'), ]
SearchView()
視圖函數默認使用的html模板爲當前app目錄下,路徑爲myapp/templates/search/search.html
因此須要在blog/templates/search/
下添加search.html
文件,內容爲
{% extends 'base.html' %} {% block content %} <h2>Search</h2> <form method="get" action="."> <table> {{ form.as_table }} <tr> <td> </td> <td> <input type="submit" value="Search"> </td> </tr> </table> {% if query %} <h3>Results</h3> {% for result in page.object_list %} <p> <a href="{{ result.object.get_absolute_url }}">{{ result.object.title }}</a> </p> {% empty %} <p>No results found.</p> {% endfor %} {% if page.has_previous or page.has_next %} <div> {% if page.has_previous %}<a href="?q={{ query }}&page={{ page.previous_page_number }}">{% endif %}« Previous{% if page.has_previous %}</a>{% endif %} | {% if page.has_next %}<a href="?q={{ query }}&page={{ page.next_page_number }}">{% endif %}Next »{% if page.has_next %}</a>{% endif %} </div> {% endif %} {% else %} {# Show some example queries to run, maybe query syntax, something else? #} {% endif %} </form> {% endblock %}
很明顯,它自帶了分頁。
使用python manage.py rebuild_index
或者使用update_index
命令。
好,下面運行項目,進入該url搜索一下試試吧。
jieba
分詞將文件whoosh_backend.py
(該文件路徑爲python路徑/lib/python3.4/site-packages/haystack/backends/whoosh_backend.py
)拷貝到app下面,並重命名爲whoosh_cn_backend.py
,例如blog/whoosh_cn_backend.py
。修改以下
添加from jieba.analyse import ChineseAnalyzer
修改成以下
schema_fields[field_class.index_fieldname] = TEXT(stored=True, analyzer=ChineseAnalyzer(), field_boost=field_class.boost)
在settings.py
中修改引擎,以下
import os HAYSTACK_CONNECTIONS = { 'default': { 'ENGINE': 'blog.whoosh_cn_backend.WhooshEngine', 'PATH': os.path.join(BASE_DIR, 'whoosh_index' }, }
重建索引,在進行搜索中文試試吧。
若是沒有索引自動更新,那麼每當有新數據添加到數據庫,就要手動執行update_index
命令是不科學的。自動更新索引的最簡單方法在settings.py
添加一個信號。
HAYSTACK_SIGNAL_PROCESSOR = "haystack.signals.RealtimeSignalProcessor"
看了這入門篇,你如今應該大概能配置一個簡單的全文搜索了吧,若是想自定義怎麼辦? 建議閱讀官方文檔和github的源碼。