Re: [BUG/ISSUE] Distributed Search doesn't response the result set when use existing lucene index

2010-06-08 Thread Koji Sekiguchi
Are you sure you have uniqueKey field in your lucene index? Distributed search needs it. Koji Sekiguchi from mobile On 2010/06/08, at 15:52, Scott Zhang macromars...@gmail.com wrote: Hi. All. I am coming from solr user mailing list. I got a problem with distributed search. Looks it

Re: [BUG/ISSUE] Distributed Search doesn't response the result set when use existing lucene index

2010-06-08 Thread Scott Zhang
Hi. Koji. Not sure how to set uniqueKey field in my lucene index. I am creating it by using lucene.net Document doc = new Document(); doc.Add(new Field(id, product_obj.product_id.ToString(), Field.Store.YES, Field.Index.UN_TOKENIZED)); doc.Add(new Field(type, product,

Re: [BUG/ISSUE] Distributed Search doesn't response the result set when use existing lucene index

2010-06-08 Thread Scott Zhang
I checked my existing lucene indexes. All the ID field are stored but not indexed. I don't want to rebuild these indexes as it will take days. Can solr be changed a little let ID be not indexed? Thanks. On Tue, Jun 8, 2010 at 3:30 PM, Scott Zhang macromars...@gmail.com wrote: Hi. Koji. Not