Execute a command against an Aerospike cluster.

Usage: cli [OPTIONS]...
  -t, --target          a cluster node to query (host:port)
                        default: 127.0.0.1:3000
  -h, --host            host of the cluster node to query
                        default: 127.0.0.1
  -p, --port            port of the cluster node to query
                        default: 3000
  -U, --user            user name
  -P, --password        password
  -o, --operand         the operand: get, set, delete
                        default: get
  -n  --namespace       the namespace to operate on
                        default: test
  -s  --set             the set the key belongs in
                        default: ""
  -k, --key             key - must be set, no default
  -b, --bin             bin
                        default: ""
  -e, --recordttl       record TTL 
                        default: None
  -v, --value           value
  -d, --digest          digest
  -i, --integer-key     True, if key is a integer
  --verbose             make the request verbose

For usage: cli -u

This command can be used to manually set or get objects into the cluster. Some examples are provided below:

This will get a key with string "server01" from the namespace "users".

	cli -o get -n users -k server01

This will set an object with a key string of "server01" and a value of "This is my hostname" in the namespace "users".

	cli -o set -n users -k server01 -v "This is my hostname"

