Hello everyone :) I was trying to purge out older things.. in this case of a certain type of document that had an ID lower than 2000000. So I posted this:
<delete><query>id:[0 TO 2000000] AND type:I</query></delete> Now, I have only 49 type "I" items total in my index (shown by /solr/select?q=type:I), when there should be numbers still up to about 2165000 which is far far more than 49.... I'm curious why this would be, as I'm trying to build it automatic purging of older things, but this obviously didn't work the way I thought. I'm on version 1.1, and my schema information for the fields is below: <field name="id" type="string" indexed="true" stored="true" required="true" /> <field name="title" type="text" indexed="true" stored="true" multiValued="true"/> <field name="body" type="text" indexed="true" stored="false" multiValued="true"/> <field name="product" type="text" indexed="true" stored="false" multiValued="true"/> <field name="status" type="string" indexed="true" stored="false" multiValued="true"/> <field name="resolution" type="string" indexed="true" stored="false" multiValued="true"/> <field name="owner" type="string" indexed="true" stored="false" multiValued="true"/> <field name="touches" type="text" indexed="true" stored="false" multiValued="true"/> <field name="type" type="string" indexed="true" stored="true" multiValued="true"/> <field name="url" type="string" indexed="true" stored="true" multiValued="true"/> Thanks for any insight into why I broke it! -Reece