At Query Time
It is not sufficient just to think about your documents, though. You also need
to think about how your users will query those documents. Often you will be able
to identify the main language of the user either from the language of that user’s chosen
interface (for example, mysite.de
versus mysite.fr
) or from the
accept-language
HTTP header from the user’s browser.
User searches also come in three main varieties:
-
Users search for words in their main language.
-
Users search for words in a different language, but expect results in
their main language.
-
Users search for words in a different language, and expect results in
that language (for example, a bilingual person, or a foreign visitor in a web cafe).
Depending on the type of data that you are searching, it may be appropriate to
return results in a single language (for example, a user searching for products on
the Spanish version of the website) or to combine results in the identified
main language of the user with results from other languages.
Usually, it makes sense to give preference to the user’s language. An English-speaking
user searching the Web for ``deja vu'' would probably prefer to see
the English Wikipedia page rather than the French Wikipedia page.
Identifying Language
You may already know the language of your documents. Perhaps your documents
are created within your organization and translated into a list of predefined
languages. Human pre-identification is probably the most reliable method of
classifying language correctly.
Perhaps, though, your documents come from an external source without any
language classification, or possibly with incorrect classification. In these
cases, you need to use a heuristic to identify the predominant language.
Fortunately, libraries are available in several languages to help with this problem.
Identifying the language of the user’s search request is not quite as simple.
The CLD is designed for text that is at least 200 characters in length.
Shorter amounts of text, such as search keywords, produce much less accurate
results. In these cases, it may be preferable to take simple heuristics into
account such as the country of origin, the user’s selected language, and the
HTTP accept-language
headers.