Displaying 2 results from an estimated 2 matches for "valueweightpostingsource".
2008 Dec 17
1
using ValueWeightPostingSource
...se it with the query so i
link a query constructed using the posting source and a query made
using the query parser with an AND operator :
Xapian.Query queryText = parser.ParseQuery("test:" + textBox1.Text + "
DS:1 DS:2");
Xapian.Query postingQuery = new Xapian.Query(new
Xapian.ValueWeightPostingSource(database, (uint)ValueField.BestSell));
Xapian.Query query = new Xapian.Query(Xapian.Query.op.OP_AND,
queryText, postingQuery);
My first question is : Is this the right way to make the query ?
And my second :
My problem now is that it returns only document which has a "bestsell
value" se...
2010 Mar 16
2
Debug build
Hello,
I have updated to Xapian 1.1.4 and maybe there is a
memory leak. I can run only dmalloc - valgrind would
be much too slow.
How can I build a debug-build of xapian?
Thanks a lot
Marcus