0

newbies question

I'm new with aerospike client and i'm searching for a method documantion .. I've only found this link and that one .. but it's not enough..

Thanks in advance

Didier Spezia
  • 70,911
  • 12
  • 189
  • 154
user1567004
  • 175
  • 1
  • 8

1 Answers1

2

You should be using the operate function in the AerospikeClient class. Here is the documentation for it. operate function lets you perform multiple operations in a single call to the server. You have to specify add and get operations for your need.

There is a nice example demonstrating your use-case. When you download the java client, look at the file examples/src/com/aerospike/examples/Add.java.

sunil
  • 3,507
  • 18
  • 25