Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • "createKS": This creates the Cassandra keyspace required for the sample. This must be first called once before running other operations.
  • "createTable": This creates a Cassandra CQL3 table required for the sample. This must be calls called once after "createKS" is called.
  • "addUser": This operation takes in user details and add adds it to Cassandra, here . Here "idID" is the primary key and it takes in an UUID as the value.
  • "addUser_batch_req": This is the corresponding batch request of "addUser", where it takes in a batch of "addUser" data entries and adds it as a single batch operation.
  • "getUserById": This operations operation returns the user information given when you provide the id ID of a specific user.
  • "getUsers": This operation returns information of all the users stored in the Cassandra store.

...