We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44d6c3e commit ab2290eCopy full SHA for ab2290e
spring-boot-samples/spring-boot-sample-data-cassandra/README.adoc
@@ -1,4 +1,12 @@
1
+= Spring Boot Sample Data Cassandra
2
3
+To run the project, need to run below `cql` commands on Cassandra.
4
-CREATE KEYSPACE mykeyspace WITH REPLICATION = { 'class' : 'SimpleStrategy', 'replication_factor' : 1 };
5
+== Keyspace Creation in Cassandra
6
+[source,indent=0]
7
+----
8
+ CREATE KEYSPACE mykeyspace WITH REPLICATION = { 'class' : 'SimpleStrategy', 'replication_factor' : 1 };
9
10
11
+== Table Creation in Cassandra
12
+Run `cql` using the link:src/test/resources/setup.cql[setup script] located in resources folder.
0 commit comments