-
Notifications
You must be signed in to change notification settings - Fork 93
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
autocomplete work only with full word match #108
Comments
Same problem here... |
It doesn't look like anything ever passes the xapian flags into the query. which is odd as they have defaults, over rides and get assigned to the backend instance. is there a simple fix for this? |
I think that this is because autocomplete is using filter, which in turn is using exact matches by default. In principle this will be fixed on this ticket #123. |
I took a more close look at this, and the issue seems to be that we are not indexing ngram, see #117. This thus depends on it. |
Has this been fixed? I am experiencing it now as I upgrade to Django 1.10 and would love a fix. |
When i use django-haystack and xapian backend and trying to do autocomplete
SearchQuerySet().autocomplete(category_title_auto='ca')
It doesn't return anything. It only return if i search for a full word..
The text was updated successfully, but these errors were encountered: