Re: Link walking and keep field

2011-10-21 Thread Anton Podviaznikov
Hi, Thank you for your response. Ok, so I'll use URL-syntax for link walking. Another problem here. I'm using riak-js as client library. And in this library for link walking (method "walk") M/R style used internally: https://github.com/frank06/riak-js/blob/master/src/http_client.coffee#L79 What s

Re: Link walking and keep field

2011-10-21 Thread Sean Cribbs
Anton, Sorry for the delay. Yes you can use MapReduce link-phases in a similar way, but unlike the link-walking resource, the objects pointed to in each phase will not be returned. The way link-walking does its work is to split the URL into segments for each phase that has keep=true (1), then iss

Link walking and keep field

2011-10-17 Thread Anton Podviaznikov
Hi, I had question about Link walking. I need to walk links in few levels and keep results from previous steps. I managed to achieve this using URL syntax /users/userid/projects,*,1/parts,*,1/units,*,* Here I find all user's projects than parts and finally units. However I couldn't achieve the sa