Re: Can Field types affect search speed?

2006-07-26 Thread Erick Erickson
nope, haven't had to worry about it yet ... Erick

Re: Can Field types affect search speed?

2006-07-26 Thread Ryan O'Hara
I'm not using a Hits object. I'm using a HitCollector. I was just curious about whether Field settings could affect search performance. Any ideas? Ryan - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

Re: Can Field types affect search speed?

2006-07-26 Thread Erick Erickson
Are you using a Hits object to iterate over the results? If so, you are re-executing the query every 100 docs or so under the covers, and if there are many results, this is very bad. If this is the case, you want to use a TopDocs or HitCollector to iterate through the entire result set. Of cours

Can Field types affect search speed?

2006-07-26 Thread Ryan O'Hara
Currently, I have field "DOC" which is indexed, but not stored and not compressed. This is the field that users query. I also have a field "SYM" which is indexed and stored, but not compressed. For every document returned in a query, I need its symbol. Can field types (indexed vs. not i