Hi Racola,
You can get all the Terms from the Index from the IndexReader like in the
code below. I'm uding Luvene Java and don't know much of .Net. But
customized sorting can easily be done with a the Set collections (Like
SortedSet).
Regards,
Evert
Directory dir = FSDirectory.getDirectory(indexLocation);
IndexReader reader = IndexReader.open(dir);
TermEnum terms = reader.terms();
On Mon, Mar 23, 2009 at 2:15 AM, rockacola <[email protected]> wrote:
>
> I am using Lucene.Net 1.3.3.1 and I am trying to list all searchable item
> in
> the search index.
>
> So basically, without searching but simply return all entries in the index
> with customized sorting as well. Can this be achieved?
>
>
> --
> View this message in context:
> http://www.nabble.com/Are-you-able-to-list-everything-in-index-tp22652917p22652917.html
> Sent from the Lucene - General mailing list archive at Nabble.com.
>
>