I want to implement a search solution for a site written in Django. Of the available options (I explored Solr, Sphinx, Xapian, PostgreSQL / Tsearch3, MySQL). Sphinx looks prettier. However, it does not support output for the Polish language, and it is the language of the data that I want to make searchable.
What are the best ways to work with unsupported languages in Sphinx? I have an intuition that I can create a consolidated corpus from the Ispell dictionary. How can I make this work with Sphinx?
source
share