search for: match_set

Displaying 1 result from an estimated 1 matches for "match_set".

Did you mean: match_re
2013 Sep 02
2
having trouble with prefixes
...ng strategy here (in query parser)? queryparser.set_stemming_strategy(QueryParser::STEM_NONE); Query query(queryparser.parse_query(full_string)); cout<<"Query is '"<<full_string<<"'"<<endl; Enquire enquire(db); enquire.set_query(query); MSet match_set(enquire.get_mset(0, 10)); for_each(match_set.begin(), match_set.end(), [&db](docid id) { print_doc_info(db.get_document(id)); }); I expected the following query to work, md5sum:DD4F2162FFFF0E43741A4A1C2B8EC0E7 but it returns nothing. Same for all the other terms...