Hi José,

Please refer to this document:

http://basho.github.io/riak-nodejs-client/classes/RiakObject.html

When you retrieve a value, you get a RiakObject back:

client.fetchValue({ bucket: 'test', key: 'foo' }, function (err, rslt) {
    var riakObj = rslt.values.shift();
});

This RiakObject exposes several methods related to metadata.

I just released version 1.1.0 which adds support for links. You'll see
that in the API docs now.

--
Luke Bakken
Engineer
lbak...@basho.com


On Tue, Apr 7, 2015 at 5:27 AM, José Ghislain Quenum
<jose.que...@googlemail.com> wrote:
> Luke,
> In my current implementation, I use metadata for both links and secondary
> index.
>
> On Mon, Apr 6, 2015 at 4:03 PM, Luke Bakken <lbak...@basho.com> wrote:
>>
>> Hi José,
>>
>> Other than links, what object metadata are you trying to access or modify?
>>
>> Thanks -
>>
>> --
>> Luke Bakken
>> Engineer
>> lbak...@basho.com
>>
>>
>> On Sat, Apr 4, 2015 at 6:56 AM, José Ghislain Quenum
>> <jose.que...@googlemail.com> wrote:
>> > Thanks Brian for your reply and trying to work out the links part.  I
>> > took a look at the RiakObject and could see how to manipulate it with
>> > FetchValue and the Secondary Index. However, I failed to figure out
>> > how to access the meta while reading an object. Just as an example,
>> > when you're updating an object you could be using some meta data, and
>> > some of them come from a prior read.
>> >
>> > If you could just share some examples with code  that'd be very helpful.
>> >
>> > Thanks José
>
>

_______________________________________________
riak-users mailing list
riak-users@lists.basho.com
http://lists.basho.com/mailman/listinfo/riak-users_lists.basho.com

Reply via email to