0

my question is how I can obtain related content, as does StackOverflow with questions with similar titles. In my case, no tags, just a textarea.

There is something already done in Django for this? or how I can do it?

I think I can use sphinx for searching and get related content, right?

Charles
  • 50,943
  • 13
  • 104
  • 142
  • possible duplicate of [What's the best Django search app?](http://stackoverflow.com/questions/55056/whats-the-best-django-search-app) – dbn Feb 28 '14 at 01:59

1 Answers1

1

You need to look into django-haystack. it deals with full-text search and finding relevant results.

Thomas
  • 11,757
  • 4
  • 41
  • 57