Hi, I want to increment bins value its in integer format, I tried below one but it doesn’t work for me. I am suing community edition server
cl_object key_obj;
citrusleaf_object_init_int(&key_obj, 5);
uint gen_count;
cl_operation ops[1];
ops[0].op = CL_OP_INCR;
strcpy(ops[0].bin.bin_name, "test_bin_one");
citrusleaf_object_init_int(&values[0].object, 5);
citrusleaf_operate(c->asc, c->ns, c->set, &o_key, ops, 1, 0, 0, &gen_count) ;
above code does not work for me please give me some suitable example.
Thanks, Ravi