Roundup Tracker - Issues

Message4020

Author wolever
Recipients wolever
Date 2010-02-05.15:22:41
Message-id <1265383361.99.0.679139411363.issue2550635@psf.upfronthosting.co.za>
In-reply-to
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-02-05 15:22:41woleversetmessageid: <1265383361.99.0.679139411363.issue2550635@psf.upfronthosting.co.za>
2010-02-05 15:22:41woleversetrecipients: + wolever
2010-02-05 15:22:41woleverlinkissue2550635 messages
2010-02-05 15:22:41wolevercreate