Re: Can't delete from curl

2010-03-09 Thread Paul Tomblin
On Mon, Mar 8, 2010 at 9:39 PM, Lance Norskog wrote: > ... curl http://xen1.xcski.com:8080/solrChunk/nutch/select > > that should be /update, not /select Ah, that seems to have fixed it. Thanks. -- http://www.linkedin.com/in/paultomblin http://careers.stackoverflow.com/ptomblin

Re: Can't delete from curl

2010-03-08 Thread Lance Norskog
... curl http://xen1.xcski.com:8080/solrChunk/nutch/select that should be /update, not /select On Sun, Mar 7, 2010 at 4:32 PM, Paul Tomblin wrote: > On Tue, Mar 2, 2010 at 1:22 AM, Lance Norskog wrote: > >> On Mon, Mar 1, 2010 at 4:02 PM, Paul Tomblin wrote: >> > I have a schema with a field n

Re: Can't delete from curl

2010-03-07 Thread Paul Tomblin
On Tue, Mar 2, 2010 at 1:22 AM, Lance Norskog wrote: > On Mon, Mar 1, 2010 at 4:02 PM, Paul Tomblin wrote: > > I have a schema with a field name "category" ( > type="string" stored="true" indexed="true"/>). I'm trying to delete > > everything with a certain value of category with curl: > > > >

Re: Can't delete from curl

2010-03-01 Thread Lance Norskog
On Mon, Mar 1, 2010 at 4:02 PM, Paul Tomblin wrote: > I have a schema with a field name "category" ( type="string" stored="true" indexed="true"/>).  I'm trying to delete > everything with a certain value of category with curl: > > I send: > > curl http://localhost:8080/solrChunk/nutch/update -H "C

Can't delete from curl

2010-03-01 Thread Paul Tomblin
I have a schema with a field name "category" (). I'm trying to delete everything with a certain value of category with curl: I send: curl http://localhost:8080/solrChunk/nutch/update -H "Content-Type: text/xml" --data-binary 'category:Banks' Response is: 023 I send curl http://localhost:8