RE: Re:Riak search queries via the java client

2012-08-26 Thread Oved Machlev
com [mailto:riak-users-boun...@lists.basho.com] On Behalf Of Engel Sanchez Sent: Sunday, August 26, 2012 20:12 To: riak-users@lists.basho.com Subject: Re:Riak search queries via the java client Hi Oved. If Riak search is anything like Lucene search, the correct way to query that would be: Name:c1 OR Name:c2

Re:Riak search queries via the java client

2012-08-26 Thread Engel Sanchez
Hi Oved. If Riak search is anything like Lucene search, the correct way to query that would be: Name:c1 OR Name:c2 Did you try that? I believe this also works in lucene: Name:(c1 OR c2) Sorry to answer without actually trying this on Riak, just from my Lucene experience. But it's worth a try.