Re: deleting a document from Yokozuna index with Ruby client?

2014-04-14 Thread Paul Walk
Thanks Tom - that makes sense! Paul --- Paul Walk http://www.paulwalk.net --- > On 14 Apr 2014, at 18:37, Tom Santero wrote: > > Hi Paul, > > Deleting a key in Riak will result it being removed from the Yokozuna/S

Re: deleting a document from Yokozuna index with Ruby client?

2014-04-14 Thread Tom Santero
Hi Paul, Deleting a key in Riak will result it being removed from the Yokozuna/Solr index. Call the delete method against a bucket object and pass in the name of the key as an argument, such as: pauls_bucket = client.bucket('foo') pauls_bucket.delete('bar') You can also call delete against a ri

deleting a document from Yokozuna index with Ruby client?

2014-04-14 Thread Paul Walk
I cannot see how one should delete a document from a Yokozuna index with the Ruby client. The 'remove' method of the 'client' object has disappeared in the latest version of the client... Can anyone advise? Paul --- Paul Walk http://www.paulwalk.net -