-
Notifications
You must be signed in to change notification settings - Fork 16
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
Search blog posts #78
Comments
We have the Tags, I'll try to add a Tag search, but an exact search has too many things behind it. |
I don't mean a haystack or similar solution, I was thinking of something more simple. With Django's Q I think we can do it with one or max 2 small views. |
Doing a full text search with django + database by itself would be very inefficient. This requires a dedicated search engine such as |
Is using something like Haystack too inefficient? Or slow? |
@npaul2811 using Haystack is a good solution. Using Django queries would be inefficient and slow. |
Search for something within the blog
The text was updated successfully, but these errors were encountered: