Re: Riak search on an index limited to only 1 bucket

2016-05-13 Thread Alex De la rosa
Oh, nice snippets! thanks Drew! Alex On Fri, May 13, 2016 at 11:28 PM, Drew Kerrigan wrote: > @Alex please kindly take a look at the default solr schema for Riak > Search. You should have based your custom schema on this (if you've created > a custom schema): > https://docs.basho.com/riak/kv/2.

Re: Riak search on an index limited to only 1 bucket

2016-05-13 Thread Drew Kerrigan
@Alex please kindly take a look at the default solr schema for Riak Search. You should have based your custom schema on this (if you've created a custom schema): https://docs.basho.com/riak/kv/2.1.4/developing/usage/search-schemas/ -> https://raw.githubusercontent.com/basho/yokozuna/develop/priv/de

Re: Riak search on an index limited to only 1 bucket

2016-05-13 Thread Alex De la rosa
Yes, using Python client. I'm able to store sets without problem into Riak, just wondered if indexing them in SOLR would be as simple as just adding the multiValued attribute to the "set" field... seems is going to be that way :) Thanks, Alex On Fri, May 13, 2016 at 11:15 PM, Vitaly <13vitam...@g

Re: Riak search on an index limited to only 1 bucket

2016-05-13 Thread Vitaly
In general, Riak/Solr is capable of indexing multi-valued properties (i.g. lists). You're right thinking that multiValued = "true" should be used for it. That said, check if it works with your client library (it's Python, isn't it?). I believe it does. Regards, Vitaly On Fri, May 13, 2016 at 9:59

Re: Riak search on an index limited to only 1 bucket

2016-05-13 Thread Alex De la rosa
Another question... if I have a set of tags for the elements... like photo.set['tags'] with things like: ["holidays", "Hawaii", "2016"]... will it be indexed like this? Thanks, Alex On Fri, May 13, 2016 at 10:52 PM, Alex De la rosa wrote: > Oh!! silly me... *_yz_rb* and *_yz_rt*... how didn't

Re: Riak search on an index limited to only 1 bucket

2016-05-13 Thread Alex De la rosa
Oh!! silly me... *_yz_rb* and *_yz_rt*... how didn't I think of that?... thanks also for the "*:*" tip ; ) Thanks! Alex On Fri, May 13, 2016 at 10:50 PM, Vitaly <13vitam...@gmail.com> wrote: > Hi Alex, > > 'likes_counter:[100 TO *] AND _yz_rb:photos' will limit query results to > the photos buc

Re: Riak search on an index limited to only 1 bucket

2016-05-13 Thread Vitaly
Hi Alex, 'likes_counter:[100 TO *] AND _yz_rb:photos' will limit query results to the photos bucket only. Similarly, "_yz_rt" is for a bucket type. Searching for anything in an index can be done with "*:*" (any field, any value). Regards, Vitaly On Fri, May 13, 2016 at 9:40 PM, Alex De la rosa

Riak search on an index limited to only 1 bucket

2016-05-13 Thread Alex De la rosa
Hi all, Imaging I have an index called "*posts*" where I index the following fields and I reuse the index in 3 buckets: "status", "photos" and "videos"... then I do the following: *results = client.fulltext_search('posts', 'likes_counter:[100 TO *]', sort='likes_counter desc', ro