: I am trying to delete a record from the index using SolrJ. When I : execute it I get a status of 0 which means success. I see that the : "cummulative_deletbyquery" count increases by 1 and also the "commit" : count increases by one. I don't see any decrease on the "numDocs" count. : When I query it back I do see that record again.
I'm not positive, but i don't think deleting by query will error if no documents matched the query -- so just because it succeeds doesn't mean it actually deleted anything ... are you sure '"rev.id:" + reviewId' matches on the document you are trying to delete? does that search find it using the default handler? (is there any analyzer weirdness?) -Hoss