Roundup Tracker - Issues

Issue 2550635

classification
Title: Possible bug in Xapian indexer's 'find' method?
Type: behavior Severity: normal
Components: Versions: 1.3
process
Status: new Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: bruce, wolever
Priority: Keywords:

Created on 2010-02-05 15:22 by wolever, last changed 2010-10-25 00:43 by bruce.

Messages
msg4020 (view) Author: [hidden] (wolever) Date: 2010-02-05 15:22
Reading through the Xapian indexer's code, I noticed this in 'find':

        query = xapian.Query(xapian.Query.OP_AND, terms)

        enquire.set_query(query)
        matches = enquire.get_mset(0, 10) <<<<< THIS LINE

        return [tuple(m[xapian.MSET_DOCUMENT].get_data().split(':'))
            for m in matches]

It looks like only the first 10 results will be returned… Is that expected?
History
Date User Action Args
2010-10-25 00:43:13brucesetnosy: + bruce
2010-02-05 15:22:41wolevercreate