Displaying 1 result from an estimated 1 matches for "fahrraeder".
2011 Sep 23
2
understanding stemming and synonyms
...: the perl-bindings dont allow the QueryParser a third
argument when calling parse_query! So i cannot set a default prefix
(which perhaps is the solution to my problem, but later more)
i have a simple testcase:
3 documents, every document only has one word:
bike
fahrrad (german bike singular)
fahrraeder (german bike plural, umlaut replaced)
i have build the database with one synonym: Zfahrrad = Zbik
When i insert the documents, i printed the termlist:
INSERT DOKUMENT: bike
DOCUMENT: Document(Xapian::Document::Internal(data=`bike', terms[2]))
TERM: Zbik
TERM: bike
INSERT DOKUMENT: fahrrad
DO...