Aerospike operations on list/map -


does aerospike go client support operations such add/remove list/map in bin directly client i.e, without doing , put operation?

aql> select * test_ns.test_set pk='12345678' +----------------------------+---------------------------+ | map_bin                    | list_bin                  | +----------------------------+---------------------------+ | map('{22370:1, 23471:1}')  | list('[22370, 1234543]')  | +----------------------------+---------------------------+ 

in above example, want add entry list in list bin or add entry in map,

i know can use udf's can directly aerospike client without writing udf udf operations costly?

p.s. using aerospike go client

the go client aerospike, other clients, supports list , map api operations such list-append (listappendop). in clients there wrapper methods it, can use operate() method execute multiple operations on single record, including atomic list , map operations.


Comments

Popular posts from this blog

angular - Ionic slides - dynamically add slides before and after -

minify - Minimizing css files -

Add a dynamic header in angular 2 http provider -