Displaying 3 results from an estimated 3 matches for "moellic".
Did you mean:
moeller
2011 Mar 07
1
Set Term Frequency for a Query
Hello,
I have a problem when trying to define a query and setting for each term its
"term frequency" with the classical constructor
Xapian::Query<http://xapian.org/docs/apidoc/html/classXapian_1_1Query.html#f396e213df0d8bcffa473a75ebf228d6>(const
std::string &tname_,
2011 Apr 19
0
Merge databases
...The problem is that xapian-compact is not able to merge databases because of
overlapping "doc ID range". Nevertheless, in my case, a doc ID is always
used for one and only one database.
Is there a (other) clever way to simply and quickly merge databases ?
Regards
2011/3/7 Pierre-Alain Moellic <pamoellic at gmail.com>
> Hello,
>
> I have a problem when trying to define a query and setting for each term
> its "term frequency" with the classical constructor Xapian::Query<http://xapian.org/docs/apidoc/html/classXapian_1_1Query.html#f396e213df0d8bcffa473a75ebf...
2011 Mar 08
1
MSet order
Hello
I defined a weighting scheme to simulate a king of "euclidean" distance.
To test it, i used a database with 1000 documents.
If I run :
enquire.set_weighting_scheme(MyWeight());
Xapian::MSet matches = enquire.get_mset(0, 1000);
I have a correct list of results.
But if I run Xapian::MSet matches = enquire.get_mset(0, 10);
I don't have the top-10 results.
If I run Xapian::MSet