Using Lucene.Net

 

I've built an index of documents.

 

The documents also have a unique identifier (my identifier, not the lucene 
index's id).

The unique identifers are also a sort order of new-ness (higher id values are 
newer)

 

string my_id ="1234"

doc.Add(new Field("id", my_id, Field.Store.YES, Field.Index.UN_TOKENIZED));

 

Searching for a particular id, or range searches are incredibly slow

 

 

TermQuery query = new TermQuery(new Term("id", "1234"));

searcher.Search(query)

 

 

Any tips on how to speed up such an search?

 

I'm also doing RangeSearches on lower / upper ids, and those are slow too
                                          
_________________________________________________________________
The New Busy is not the too busy. Combine all your e-mail accounts with Hotmail.
http://www.windowslive.com/campaign/thenewbusy?tile=multiaccount&ocid=PID28326::T:WLMTAGL:ON:WL:en-US:WM_HMP:042010_4

Reply via email to