Re: riak search and basic write operations

2012-10-04 Thread kamiseq
ok, I think Im just too tired ;] One more question about search if I understand it right only new stored or updated objects will be indexed. can I look somewhere and see that something was indexed?? It would be great to have something like solr admin console. thanks again for helping me. pozdr

Re: riak search and basic write operations

2012-10-03 Thread Brian Roach
The problem you are having has nothing to do with the Java client; the '#' character is a reserved character in an URL. It needs to be URL encoded or it's interpreted as a fragment/anchor indicator. http://en.wikipedia.org/wiki/Percent-encoding In an URL you just need to replace it with %23 On

Re: riak search and basic write operations

2012-10-03 Thread kamiseq
I found out why I couldn't read objects via rest client. my key contained # and it was probably mapped to different char by pbclient, when replaced # with _ everything works fine. how can I force charset using pbclient, what is the default? pozdrawiam Paweł Kamiński kami...@gmail.com pkaminski..

Re: riak search and basic write operations

2012-10-03 Thread kamiseq
ok, I admit that somehow I didn't catch at first that example shows second index usage - so thanks for pointing this out. what about questions 1,4,5?? pozdrawiam Paweł Kamiński kami...@gmail.com pkaminski@gmail.com __ On 3 October 2012 00:24, Brian Roach wrote: > Greet

Re: riak search and basic write operations

2012-10-02 Thread Brian Roach
Greetings! First and foremost, search and secondary indexes (2i) are not the same thing. You need to enable 2i and use the ELevelDB backend as described here: http://wiki.basho.com/Secondary-Indexes---Configuration-and-Examples.html Secondly, the default Converter (JSONConverter) in the Java cli