search for: alldocuments

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

Did you mean: alldocument
2011 Jul 28
1
Xapian and Synonyms
Hi guys I've just had a thought about something we do with our search on ReportBuyer.com: we cater for both American and British English in our searches and we have had plans for a while now to implement something that allows users to find 'colour' and 'color', 'tap' and 'faucet' by doing some clever programming. Looking at the Xapian docs, though, it appears
2006 Dec 06
1
Bug and patch for +terms with wildcards
..._PHRASE: name = "PHRASE"; break; case Xapian::Query::OP_ELITE_SET: name = "ELITE_SET"; break; + case Xapian::Query::OP_MATCH_NOTHING: name = "MATCH_NOTHING"; break; } return name; } @@ -211,6 +217,9 @@ if (tname.empty()) return "<alldocuments>" + opstr; return tname + opstr; } + if (op == Xapian::Query::OP_MATCH_NOTHING) { + return "<nodocuments>"; + } opstr = " " + get_op_name(op) + " "; if (op == Xapian::Query::OP_NEAR || @@ -414,6 +423,9 @@ return qint...