Custom Search

Tuesday, March 30, 2010

Full Text Search engine for Django projects

Full Text Search engine for Django projects

http://code.google.com/p/django-fts/

To install the latest version:
http://django-fts.googlecode.com/svn/trunk/

To install the latest version:

svn checkout http://django-fts.googlecode.com/svn/trunk/ django-fts
cd django
-fts
python setup
.py install

------------------------

AttributeError: 'NoneType' object has no attribute 'column'

Solution:

http://code.google.com/p/django-fts/issues/detail?id=5#c2

As a short-term fix, I removed `objects = fts.SearchManager()` from backends.SearchableModel, then added the
appropriate objects definition directly on my model, in the same way the docs tell you to if you want to define
which fields should be indexed.


**********************

Popular Full Text Search engine projects

1) haystack

2) django-sphinx


**********************

No comments:

Post a Comment