On Mon, Mar 17, 2008 at 5:59 PM, Ryan McKinley <[EMAIL PROTECTED]> wrote:
> [* TO *] iterates over all docs in the index, so that is not a fair
> comparison...
It's equivalent to iterating over all docs in the index, but it's
worse since it iterates over all terms in the field and then all docs
where 'distribution' of queried single-value field is extemely low, such as
fq=country:USA
Standard query is 1 times faster than less intelligent
Does anyone experience similar staff?
It's probably specific to [* TO *] which was stupid in this case...
try:
q=+california +country:US
I just noticed huge difference in performance of very simple fq-type queries
in comparison with standard Lucene queries:
2ms vs. 2ms
where 'distribution' of queried single-value field is extemely low, such as
fq=country:USA
Standard query is 1 times faster than less intelligent
Does an