Hi,

I'm doing some tests with Solr1.3
I have loaded around 7M documents, each with a few stored and indexed fields.

This query: text:sometext returns the results, sorted by score in a few milliseconds. (I display 10 out of 8747 matched documents) This one: text:sometext;id desc takes something like 60s or more to return the data (when it doesn't fails with an out of memory error). (id is a string type).
I have tried to display only id, same results.

Any ideas ? I'm sure I'm doing something wrong.....

My schema is based on the sample, with the following fields:

<field name="id" type="string" indexed="true" stored="true" required="true" /> <field name="url" type="string" indexed="true" stored="true"/>
  <field name="type" type="string" indexed="true" stored="true"/>
  <field name="title" type="string" indexed="true" stored="true"/>
  <field name="text" type="text" indexed="true" stored="true" />
  <field name="tag" type="string" indexed="true" stored="true" multiValued="true" 
/>
  <field name="timestamp" type="date" indexed="true" stored="true" default="NOW" 
multiValued="false"/>
  <dynamicField name="*" type="ignored" />


Thanks
Christophe



Reply via email to