Re: Solr 1.3 deletes not working?

2009-09-18 Thread Lee Theobald
not extra characters in our deletion queries. Can anyone think of anything else that I should be checking? I'm sure it's probably a small bit of config we've missed but I can't track it down. Regards, Lee -- View this message in context: http://www.nabble.com/Solr-1.3-deletes-not-working

Re: Solr 1.3 deletes not working?

2009-09-18 Thread Yonik Seeley
On Fri, Sep 18, 2009 at 6:26 AM, Lee Theobald l...@openobjects.com wrote: I also seem to be having a similar problem deleting.  As far as I can tell, the system thinks we are deleting the records (it logs that it's executing the commands and all looks OK) but the records always remain.  

Re: Solr 1.3 deletes not working?

2008-06-26 Thread Galen Pahlke
Thanks for all your help. I found the problem. My delete queries had spaces around the id, and everything works after I got rid of them. deleteid 12345 /id/delete doesnt work deleteid12345/id/delete works fine Perhaps a heads up about this in the docs would be in order? - Galen Pahlke On Wed,

Solr 1.3 deletes not working?

2008-06-25 Thread Galen Pahlke
Hi everyone, I'm having trouble deleting documents from my solr 1.3 index. To delete a document, I post something like deleteid12345/id/delete to the solr server, then issue a commit. However, I can still find the document in the index via the query id:12345. The document remains visible even

Re: Solr 1.3 deletes not working?

2008-06-25 Thread Yonik Seeley
On Wed, Jun 25, 2008 at 8:44 PM, Galen Pahlke [EMAIL PROTECTED] wrote: I'm having trouble deleting documents from my solr 1.3 index. To delete a document, I post something like deleteid12345/id/delete to the solr server, then issue a commit. However, I can still find the document in the

Re: Solr 1.3 deletes not working?

2008-06-25 Thread Galen Pahlke
I originally tested with an index generated by solr 1.2, but when that didn't work, I rebuilt the index from scratch. From my schema.xml: fields . field name=id type=integer indexed=true stored=true required=true/ . /fields uniqueKeyid/uniqueKey -Galen Pahlke On Wed, Jun 25,

Re: Solr 1.3 deletes not working?

2008-06-25 Thread Yonik Seeley
On Wed, Jun 25, 2008 at 9:34 PM, Galen Pahlke [EMAIL PROTECTED] wrote: I originally tested with an index generated by solr 1.2, but when that didn't work, I rebuilt the index from scratch. From my schema.xml: fields . field name=id type=integer indexed=true stored=true