In article <001301c299ef$529a1ba0$3ad721c0@caliente>, Eric Jain wrote: > > There was some work done on this and it was added to the Lucene > > Sandbox. It's called SearchBean. > > Thanks. But as mentioned I believe SearchBean requires all fields that are > used for sorting to fit into memory? > > -- > Eric Jain > > -- > To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> >
I faced the same problem when adding the possibility for the user to dynamically sort the result set by clicking the table headers in a JTable. I finally decided to do a merge sort using external files with the document ids and the sorting field(s). I then used the doc ids to retrieve the documents for display. Eduardo -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
