We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I am posting this here as it's essential for aldryn-search for this to work.
The SimpleEngine backend doesn't return any search results (while haystack.backends.whoosh_backend.WhooshEngine does, exact same settings).
SimpleEngine
haystack.backends.whoosh_backend.WhooshEngine
I tried adding the apphook to a page and using the default search form. Result: "No results found."
On the shell I am able to see search results (based on http://django-haystack.readthedocs.io/en/v2.4.1/debugging.html#no-results-found-on-the-web-page) however running
from haystack.query import SearchQuerySet sqs = SearchQuerySet().all() for result in sqs: print (sqs.text)
shows that no result has a property text.
The text was updated successfully, but these errors were encountered:
I've never used SimpleEngine, so I can't speak from experience. But maybe it has something to do with how languages are mapped to indexes?
Sorry, something went wrong.
from haystack.query import SearchQuerySet sqs = SearchQuerySet().all() for result in sqs: print (result.text)
No branches or pull requests
I am posting this here as it's essential for aldryn-search for this to work.
The
SimpleEngine
backend doesn't return any search results (whilehaystack.backends.whoosh_backend.WhooshEngine
does, exact same settings).I tried adding the apphook to a page and using the default search form. Result: "No results found."
On the shell I am able to see search results (based on http://django-haystack.readthedocs.io/en/v2.4.1/debugging.html#no-results-found-on-the-web-page) however running
shows that no result has a property text.
The text was updated successfully, but these errors were encountered: