Cassandra Basics
Create keyspace
Bash Session
CREATE KEYSPACE IF NOT EXISTS somename WITH replication = { 'class' : 'SimpleStrategy', 'replication_factor' : 1} AND durable_writes = true;
Drop
Tips:
In case you change cluster name the following is needed
flush the sstables to persist the update.
txt
bash $ ./nodetool flush
txt