Re: Riak Search on KV data in erlang terms

2013-01-22 Thread Takeshi Matsumura
Hi Ryan, Thanks for the information! I'm developing an erlang application and wanted to write erlang data and run the Riak Search on them by using the riakc. Before doing so, I tried to check how it works by using the HTTP interface, and then got the issue that I asked the question about. I d

Re: Riak Search on KV data in erlang terms

2013-01-22 Thread Ryan Zezeski
Takeshi, The erlang extractors don't work when writing the data via HTTP as they store the data as a binary. I.e. [{"name", "bob"}] becomes <<"[{\"name\", \"bob\"}]">> instead of the proplist you expect. This is because the extractor assumes the object data is already properly decoded. It is po

Riak Search on KV data in erlang terms

2013-01-22 Thread Takeshi Matsumura
Hi, I tried to store erlang data and query them by using the Riak Search without success so far, and thus would like to ask if I'm doing the right thing. Riak Search was enabled in the app.config file and the server was restarted. The pre-commit hook was installed from the command line. bin/se