search for: zsearch

Displaying 2 results from an estimated 2 matches for "zsearch".

Did you mean: search
2012 Jan 05
1
Enhance synonyms feature of the query parser (patch included)
...Xapian, I recently found some problems in the use of synonyms. Normally, I think we should not contain any prefix info in synonym table except that 'Z'. For example, I have the following synonyms and prefix info: db.add_synonym("search", "find"); db.add_synonym("Zsearch", "Zfind"); db.add_synonym("foo bar", "foobar"); qp.add_prefix("title", "T"); I think my expected results of query parser should be like this: "search something" ==> "(Zsearch:(pos=1) SYNONYM find:(pos=1)) AND Zsometh:(pos=2...
2011 Sep 04
5
Ranking and term proximity
Hi, I was reading an article recently about how google ranks results (among many other things of course) based on the proximity of the search terms in the source documents. In addition, the position of the search terms in the search query string itself is also taken into consideration when determining how important each term is. Does Xapian do something similar - at least for the first part?