anyone know why Solr's ranking is affected by deleting (but not purging) documents?
ie. if I add a document and search for it, its score might be 4.7 but then if I re-add it (ie Solr deletes the old and adds it again... with same values) then do the same query the result has a score of 4.5. If I do an optimize on the indexes then the score again returns to 4.7.
I reckon this is due to the difference between maxDoc and numDoc in Solr when a document has been logically deleted, but not purged from the index.
Is this a bug? In my case it is causing problems as the sort order ends up unstable when an unrelated document (not in my result set) is deleted.
This is Solr 3.2.0
-Matt