Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 435 Bytes

README.md

File metadata and controls

27 lines (22 loc) · 435 Bytes

Supermarket api test

CREATE KEYSPACE api WITH REPLICATION = { 
  'class' : 'NetworkTopologyStrategy', 'eu-west' : 1 
};

CREATE TABLE supermarket (
  id UUID,
  name text,
  quantity int,
  PRIMARY KEY (id)
);
curl -X POST \
-H "Content-Type: application/x-www-form-urlencoded" \
-d 'name=Cheese&&quantity=3' \
"http://localhost:8080/items/new"

config.yml

cassandracluster: "ip of cluster"